import { DisplayMode } from "../common/DisplayMode"; import type { OnChangeHandler } from "../common/OnChangeHandler"; import type { OnSelectedHandler } from "../common/OnSelectedHandler"; 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 OptionsSelect: $$__sveltets_2_IsomorphicComponent<{ variant?: "" | "plain" | "outlined" | "filled"; disabled?: boolean; readonly?: boolean; compact?: boolean; mandatory?: boolean; value?: any; options: Array; keyField?: string; textField?: string; menu$height?: number; style?: string; placeholder?: string; disableOptions?: Array; hideOptions?: Array; displayMode?: DisplayMode; itemRender?: any; emptyText?: string; onchange?: OnChangeHandler; onfocus?: (() => void) | null; onblur?: (() => void) | null; onSelected?: OnSelectedHandler; quickFilter?: boolean; quickFilterPlaceholder?: string; filterFunction?: ((option: any, keyword: string) => boolean) | null; noResultsText?: string; setFocus?: () => void; }, { [evt: string]: CustomEvent; }, {}, { setFocus: () => void; }, string>; type OptionsSelect = InstanceType; export default OptionsSelect;