import { DisplayMode } from "../common/DisplayMode"; import type { OnChangeHandler } from "../common/OnChangeHandler"; import type { IsLeafDetermine } from "./isLeafDetermine"; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const CascadeOptionSelect: $$__sveltets_2_IsomorphicComponent<{ variant?: "" | "plain" | "outlined" | "filled"; disabled?: boolean; readonly?: boolean; compact?: boolean; mandatory?: boolean; value?: any; keyField?: string; textField?: string; abbrField?: string; childrenField?: string; style?: string; placeholder?: string; displayMode?: DisplayMode; emptyText?: string | null; checkLeaf?: IsLeafDetermine | null; text?: string; nodes?: Array; menu$height?: number; onSelect: (item: any) => Promise>; box$style?: string; onchange?: OnChangeHandler; onfocus?: (() => void) | null; onblur?: (() => void) | null; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type CascadeOptionSelect = InstanceType; export default CascadeOptionSelect;