import { type RowClickHandler, type TableOptions } from "./TableOptions"; import type Column from "./Column"; 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 ConciseListTable: $$__sveltets_2_IsomorphicComponent<{ list: Array; columns: Array; autoScroll?: boolean; scrollInterval?: number; rowClickHandler?: RowClickHandler | null; options: TableOptions; style?: string; className?: string; onfocus?: ((event: FocusEvent) => void) | null; onblur?: ((event: FocusEvent) => void) | null; setFocus?: () => void; }, { [evt: string]: CustomEvent; }, {}, { setFocus: () => void; }, string>; type ConciseListTable = InstanceType; export default ConciseListTable;