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