import { ExtractPropTypes } from 'vue';
export declare const optionProps: {
    /**
     * 显示文本
     */
    label: {
        type: StringConstructor;
        default: string;
    };
    /**
     * 值
     */
    value: {
        type: (NumberConstructor | StringConstructor)[];
        default: string;
    };
    /**
     * 禁用
     */
    disabled: {
        type: BooleanConstructor;
    };
};
export type OptionPropsT = ExtractPropTypes<typeof optionProps>;
