type NonPaginatedTableProps = { cols: TableProps["cols"]; data: TableProps["data"]; actions: TableProps["actions"]; tableProps?: Pick; showErrorComponent: boolean; errorMessage: string; emptyStateMessage: string; }; import { TableProps } from "../types"; declare function NonPaginatedTable(props: NonPaginatedTableProps): import("react/jsx-runtime").JSX.Element; export default NonPaginatedTable;