import { SvelteComponentTyped } from "svelte";
type PaginatedTableProps = {
    cols: TableProps["cols"];
    data: TableProps["data"];
    actions: TableProps["actions"];
    tableProps?: Pick<TableProps, "tableCaption" | "classNames">;
    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<any>;
    };
    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<PaginatedProps, PaginatedEvents, PaginatedSlots> {
}
export {};
