import { type JSX } from 'react'; /** * Props for the empty state shown when all columns are hidden and hidden-column listing is disabled. * @internal */ interface DataTableAllColumnsHiddenEmptyStateProps { /** * Callback invoked when the user clicks the CTA to enable the "list hidden columns" switch. */ onListHiddenColumns: () => void; } /** * Empty state shown in the column settings modal when all columns are hidden * and the "list hidden columns" switch is off. * @internal */ export declare function DataTableAllColumnsHiddenEmptyState({ onListHiddenColumns, }: Readonly): JSX.Element; export {}; //# sourceMappingURL=DataTableAllColumnsHiddenEmptyState.d.ts.map