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 function PaginatedTable(props: PaginatedTableProps): import("react/jsx-runtime").JSX.Element;
export default PaginatedTable;
