import { Hooks } from 'react-table'; /** * Id of the synthetic trailing column injected by {@link useDroppedColumns}. It * starts hidden (listed in the table's `initialState.hiddenColumns`) and is * revealed by the responsive effect only while at least one `dropAt` column is * currently dropped and `revealDroppedColumns` is enabled. */ export declare const DROPPED_COLUMNS_COLUMN_ID = "droppedColumns"; /** * Appends a trailing column whose per-row trigger opens a popover listing the * `Header: value` pairs of any column currently dropped for responsiveness, so * the data stays reachable on narrow viewports. Mirrors {@link useCheckbox}: * the column is injected through `hooks.visibleColumns` and its visibility is * driven by the table's existing responsive effect via `setHiddenColumns`. */ export declare const useDroppedColumns: { (hooks: Hooks): void; pluginName: string; }; //# sourceMappingURL=useDroppedColumns.d.ts.map