import * as React from 'react'; export interface ISelect2Option { value: string; label: string; } export interface ISelect2Props { id?: string; value: string; options: T[]; withLightTheme?: boolean; onChange?: (selectedOption: T) => void; defaultWidth?: number; } export declare function Select2(props: ISelect2Props): React.JSX.Element; //# sourceMappingURL=Select2.d.ts.map