import { Exporter, RaRecord } from "../types.js"; /** * A hook that provides a callback to export the selected records from the nearest ListContext and call the exporter function for them. */ export declare function useBulkExport(options?: UseBulkExportOptions): UseBulkExportResult; export type UseBulkExportResult = () => void; export interface UseBulkExportOptions { exporter?: Exporter; meta?: any; resource?: string; } //# sourceMappingURL=useBulkExport.d.ts.map