import { CommonSelectProps } from '../SelectBase'; import { SingleValue } from '../types'; export interface SelectSingleProps extends CommonSelectProps { defaultValue?: SingleValue; value?: SingleValue; onChange?: (value: SingleValue) => void; } export declare const SelectSingle: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=SelectSingle.d.ts.map