import { BasePicker, IBasePickerProps } from './index';
export interface ISimple {
    key: string;
    name: string;
}
export declare type TypedBasePicker = BasePicker<ISimple, IBasePickerProps<ISimple>>;
