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 ItemGrid: $$__sveltets_2_IsomorphicComponent<{ items?: any[]; containerRef: (node: HTMLElement) => void; onItemSelect: (item: any) => void; isItemSelected: (item: any) => boolean; renderItem: (item: any) => { html: string; } | string; getItemKey: (item: any) => string; observeItem?: ((node: HTMLElement) => { destroy: () => void; }) | undefined; loadingMore?: boolean; hasMoreItems?: boolean; loadNextBatch: () => void; layoutClass?: string; itemType?: "vector" | "font"; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type ItemGrid = InstanceType; export default ItemGrid;