import { type RowData, type TableOptions } from '@tanstack/react-table'; import type { DataTableDownloadHeaderContext } from './download-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Configuration hook for download of the DataTable. * @internal */ export declare function useDownloadData(props: { onDownloadData?: (subset: 'all' | 'page' | 'selected', excludedColumns?: string[]) => void; formatDownloadHeader?: (context: DataTableDownloadHeaderContext) => string | undefined; }, options: TableOptions): void; //# sourceMappingURL=useDownload.d.ts.map