import type { ActionsColumn, DataColumn, IndicatorColumn } from "@ticatec/uniface-element/DataTable"; import type { OnPageChange, OnRowCountChanged } from "@ticatec/uniface-element/PaginationPanel"; 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 PagingDataTableBoard: $$__sveltets_2_IsomorphicComponent<{ indicatorColumn?: IndicatorColumn | undefined; columns: Array; actionsColumn?: ActionsColumn | undefined; selectedRows?: Array; list: Array; roundTable?: boolean; total: number; pageCount: number; pageNo: number; onRowCountChanged: OnRowCountChanged; onPageChange: OnPageChange; rowHeight?: number; emptyIndicator?: string | undefined; getRowFontStyle?: GetRowFontStyle | undefined; }, { [evt: string]: CustomEvent; }, { header: {}; footer: {}; }, {}, string>; type PagingDataTableBoard = InstanceType; export default PagingDataTableBoard;