declare type OptionCommon = Record<string, any>;
export declare type Option = OptionCommon & {
    created?: boolean;
};
export declare type OptionGroup = OptionCommon;
export declare type OptionType = Option | OptionGroup;
export declare type OptionItemProps = {
    item: any;
    index: number;
    disabled: boolean;
};
export {};
