import type { PropType } from 'vue'; import type { CascaderConfig, CascaderOption, CascaderProps, CascaderValue } from './node'; export declare const CommonProps: { modelValue: PropType; options: { type: PropType; default: () => CascaderOption[]; }; props: { type: PropType; default: () => CascaderProps; }; }; export declare const DefaultProps: CascaderConfig; export declare const useCascaderConfig: (props: { props: CascaderProps; }) => import("vue").ComputedRef<{ expandTrigger: import("./node").ExpandTrigger; multiple: boolean; checkStrictly: boolean; emitPath: boolean; lazy: boolean; lazyLoad: import("./node").LazyLoad; value: string; label: string; children: string; disabled: string | import("./node").isDisabled; leaf: string | import("./node").isLeaf; hoverThreshold: number; }>;