import type { ReactNode } from 'react'; import type { CommonProps } from '../types.js'; export interface TableEmptyStateProps extends CommonProps { /** The title of the empty state. */ title: string; /** The description of the empty state. */ description: string; /** An optional action button displayed within the empty state. */ action?: ReactNode; } /** * Renders an empty state within a table that has no data. * * See [table usage guidelines](https://ui.cimpress.io/components/table/) and [table building guide](https://ui.cimpress.io/dev-guides/tables/). */ declare const _TableEmptyState: (props: TableEmptyStateProps & import("react").RefAttributes) => import("react").JSX.Element | null; export { _TableEmptyState as TableEmptyState }; //# sourceMappingURL=table-empty-state.d.ts.map