import { type CascaderProps, type CascaderSlots, type CascaderStateNode } from './common';
declare function __VLS_template(): Readonly<CascaderSlots> & CascaderSlots;
declare const __VLS_component: import("vue").DefineComponent<CascaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
    "update:model-value": (value: import("./common").CascaderValue, selectedOptions: any[]) => any;
    select: (option: any, tabIndex: number) => any;
    change: (value: import("./common").CascaderValue, selectedOptions: any[]) => any;
}, string, import("vue").PublicProps, Readonly<CascaderProps> & Readonly<{
    "onUpdate:model-value"?: ((value: import("./common").CascaderValue, selectedOptions: any[]) => any) | undefined;
    onSelect?: ((option: any, tabIndex: number) => any) | undefined;
    onChange?: ((value: import("./common").CascaderValue, selectedOptions: any[]) => any) | undefined;
}>, {
    multiple: boolean;
    rootStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null;
    rootClass: string;
    modelValue: import("./common").CascaderValue;
    options: import("./common").CascaderOption[];
    fieldKeys: import("../../use").OptionKeys;
    optionKeys: import("../../use").OptionKeys;
    hintText: string;
    labelRender: (option: import("./common").CascaderOption) => string;
    changeOnSelect: boolean;
    allLevels: boolean;
    checkStrictly: boolean;
    lazy: boolean;
    load: (node?: CascaderStateNode) => Promise<import("./common").CascaderOption[]> | import("./common").CascaderOption[];
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
