import type { FunFilter } from "./types"; import type { LazyLoader } from "./types"; 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 ListBox: $$__sveltets_2_IsomorphicComponent<{ readonly?: boolean; style?: string | null; header$style?: string | null; list: Array; itemRender: any; selectMode?: "none" | "single" | "multiple"; filter?: FunFilter | null; lazyLoader?: LazyLoader | null; selectedItem?: any; selectedList?: Array; class?: string; item$props?: any; onSelectChange?: (item: any) => void; onItemDblClick?: (item: any) => void; onItemClick?: (item: any) => void; title?: string; round?: boolean; footer$style?: string | null; filterText?: string; }, { [evt: string]: CustomEvent; }, { header: {}; loadMoreIndicator: {}; footer: {}; }, {}, string>; type ListBox = InstanceType; export default ListBox;