import type { JSX } from 'react'; /** * A component providing the menu with the functionalities to download data. * @internal */ export declare const DataTableDownloadData: ({ excludeColumns, fileName, hasIntents, isDownloading, onDownloadStart, onDownloadEnd, }: { excludeColumns?: string[]; fileName?: string | ((subset: "all" | "page" | "selected") => string); hasIntents: boolean; isDownloading: boolean; onDownloadStart: () => void; onDownloadEnd: () => void; }) => JSX.Element; //# sourceMappingURL=DataTableDownloadData.d.ts.map