import type { ActionsColumn, DataColumn, IndicatorColumn } from "@ticatec/uniface-element/DataTable"; import type { FunFilter } from "@ticatec/uniface-element/ListBox"; import type { GetRowFontStyle } from "@ticatec/uniface-element/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 DataTableBoard: $$__sveltets_2_IsomorphicComponent<{ indicatorColumn?: IndicatorColumn | null; columns: Array; actionsColumn?: ActionsColumn | null; selectedRows?: Array; list: Array; showHeader?: boolean; roundTable?: boolean; filterFun?: FunFilter | null; rowHeight?: number; filterText?: string | null; emptyIndicator: string | undefined; getRowFontStyle?: GetRowFontStyle | undefined; }, { [evt: string]: CustomEvent; }, { header: {}; footer: {}; }, {}, string>; type DataTableBoard = InstanceType; export default DataTableBoard;