import { SvelteComponentTyped } from "svelte"; import type { IOptions } from '../../interfaces/IOption'; declare const __propDef: { props: { [x: string]: any; items: IOptions[]; value?: string | undefined; filter?: boolean | undefined; optionLabel?: string | undefined; optionGroupChildren?: string | undefined; optionGroupLabel?: string | undefined; overflow?: number | undefined; placeholder?: string | undefined; searchValue?: string | undefined; filterSarch?: string[] | undefined; textNoItems?: string | undefined; show?: boolean | undefined; }; events: { click: any; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ListBoxProps = typeof __propDef.props; export declare type ListBoxEvents = typeof __propDef.events; export declare type ListBoxSlots = typeof __propDef.slots; export default class ListBox extends SvelteComponentTyped { } export {};