import type { MouseClickHandler } from "@ticatec/uniface-element/types"; import type { FunFilter } from "@ticatec/uniface-element/ListBox"; import type ListDataManager from "../../common/ListDataManager"; import type { PageAttrs, PageInitialize } from "@ticatec/uniface-micro-frame/common"; 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<{ onCreateNewClick?: MouseClickHandler; initializeData?: PageInitialize | null; page$attrs: PageAttrs; gap?: number; list?: Array; render: any; dataManager: ListDataManager; busyIndicator?: string | null; queryParams?: any; filterFun?: FunFilter | null; canBeClosed?: boolean; round?: boolean; shadow?: boolean; placeholder?: string; }, { [evt: string]: CustomEvent; }, { header: { slot: string; }; }, {}, string>; type ListPage = InstanceType; export default ListPage;