import type { SampleInfo, Source } from './types';
export declare function getSources({ sources, layout, renderingMode, sampleInfo, }: {
    sources: Source[];
    layout?: Source[];
    renderingMode: string;
    sampleInfo?: Record<string, SampleInfo>;
}): {
    label: string;
    id: string;
    baseUri?: string;
    name: string;
    color?: string;
    group?: string;
    HP?: number;
}[];
