/** @jsx html */
import { VNode } from 'snabbdom';
interface SynthesisPickerProps {
    currentId: string;
    syntheses: {
        displayName: string;
        id: string;
    }[];
    onChange: (newValue: string) => void;
}
export declare function SynthesisPicker(props: SynthesisPickerProps): VNode;
export {};
//# sourceMappingURL=synthesis-picker.d.ts.map