import type DataColumn from "./lib/DataColumn"; import type ActionsColumn from "./lib/ActionsColumn"; import type IndicatorColumn from "./lib/IndicatorColumn"; import type { GetRowFontStyle } from "./lib/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 DataTable: $$__sveltets_2_IsomorphicComponent<{ columns: Array; actionsColumn?: ActionsColumn | null; indicatorColumn?: IndicatorColumn | null; rowHeight?: number; list: Array; selectedRows?: Array; inlineRowHeight?: number; rowBorder?: boolean; colBorder?: boolean; emptyIndicator?: string | undefined; getRowFontStyle?: GetRowFontStyle | undefined; style?: string; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type DataTable = InstanceType; export default DataTable;