import ListPage from "../ListPage.svelte"; 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, PageInitialize } from "@ticatec/uniface-micro-frame/common"; import type { ButtonActions } from "@ticatec/uniface-element/ActionBar"; import type ListDataManager from "../../common/ListDataManager"; 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<{ dataManager: ListDataManager; initializeData?: PageInitialize | null; indicatorColumn: IndicatorColumn; columns: Array; actionsColumn?: ActionsColumn; selectedRows?: Array; list: Array; onCreateNewClick?: MouseClickHandler; filterFun?: FunFilter | null; page$attrs: PageAttrs; busyIndicator?: string | null; rowHeight?: number; roundTable?: boolean; canBeClosed?: boolean; emptyIndicator?: string | undefined; placeholder?: string; showInfo?: boolean; actions?: ButtonActions | null; round?: boolean; shadow?: boolean; getRowFontStyle?: GetRowFontStyle | undefined; loadList?: () => Promise; }, { [evt: string]: CustomEvent; }, { sidebar: { slot: string; }; }, { loadList: () => Promise; }, string>; type ListPage = InstanceType; export default ListPage;