import type { GetRowFontStyle, MouseClickHandler } from "@ticatec/uniface-element/types"; import type { FunFilter } from "@ticatec/uniface-element/ListBox"; import type { ActionsColumn, DataColumn, IndicatorColumn } from "@ticatec/uniface-element/DataTable"; import type { PageAttrs } from "@ticatec/uniface-micro-frame/common"; import type { ButtonActions } from "@ticatec/uniface-element/ActionBar"; 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 ListPage: $$__sveltets_2_IsomorphicComponent<{ indicatorColumn?: IndicatorColumn | null; columns: Array; actionsColumn?: ActionsColumn | null; selectedRows?: Array; list: Array; onCreateNewClick?: MouseClickHandler; onRefreshClick: MouseClickHandler; roundTable?: boolean; filterFun?: FunFilter | null; page$attrs: PageAttrs; canBeClosed?: boolean; rowHeight?: number; actions?: ButtonActions | null; placeholder?: string; round?: boolean; shadow?: boolean; emptyIndicator?: string | undefined; getRowFontStyle?: GetRowFontStyle | undefined; }, { [evt: string]: CustomEvent; }, { sidebar: { slot: string; }; }, {}, string>; type ListPage = InstanceType; export default ListPage;