import { ElSelect, ElOption } from "element-plus";
export type SelectProps = typeof ElSelect & {
    options?: Array<typeof ElOption>;
};
export declare const Select: import("vue").DefineComponent<any, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").PublicProps, Readonly<any> & {
    "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
    onChange?: ((...args: any[]) => any) | undefined;
}, {} | {
    [x: string]: any;
}, {}>;
export default Select;
