export declare type OptionCommon = { label: string; }; export declare type Option = OptionCommon & { created?: boolean; value: T; [prop: string]: any; }; export declare type OptionGroup = OptionCommon & { options: Array; [prop: string]: any; }; export declare type OptionType = Option | OptionGroup; export declare type OptionItemProps = { item: any; index: number; disabled: boolean; };