import { SvelteComponentTyped } from "svelte"; type PaginatedTableProps = { cols: TableProps["cols"]; data: TableProps["data"]; actions: TableProps["actions"]; tableProps?: Pick; showErrorComponent: boolean; errorMessage: string; emptyStateMessage: string; }; import { TableProps } from "../types"; declare const __propDef: { props: { data: PaginatedTableProps["data"]; showErrorComponent: PaginatedTableProps["showErrorComponent"]; errorMessage: PaginatedTableProps["errorMessage"]; emptyStateMessage: PaginatedTableProps["emptyStateMessage"]; cols: PaginatedTableProps["cols"]; actions: PaginatedTableProps["actions"]; tableProps?: PaginatedTableProps["tableProps"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PaginatedProps = typeof __propDef.props; export type PaginatedEvents = typeof __propDef.events; export type PaginatedSlots = typeof __propDef.slots; export default class Paginated extends SvelteComponentTyped { } export {};