import type { FunFilter } from "@ticatec/uniface-element/ListBox"; import type { ActionsColumn, DataColumn, IndicatorColumn } from "@ticatec/uniface-element/DataTable"; import { FullListDataManager } from "@ticatec/app-data-manager"; import type { FullListDataService } from "@ticatec/app-data-service"; import type { PageInitialize } from "@ticatec/uniface-micro-frame/common"; 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 ManagedSimpleDataTableBoard: $$__sveltets_2_IsomorphicComponent<{ dataManager: FullListDataManager; initializeData?: PageInitialize | undefined; indicatorColumn: IndicatorColumn; columns: Array; actionsColumn?: ActionsColumn | undefined; selectedRows?: Array; list: Array; filterFun?: FunFilter | null; busyIndicator?: string | null; rowHeight?: number; roundTable?: boolean; emptyIndicator?: string | undefined; getRowFontStyle?: GetRowFontStyle | undefined; loadList?: () => Promise; }, { [evt: string]: CustomEvent; }, {}, { loadList: () => Promise; }, string>; type ManagedSimpleDataTableBoard = InstanceType; export default ManagedSimpleDataTableBoard;