/** * Interface for export data parameters */ interface ExportDataParams { data: any; filename: string; type: string; } /** * Hook that returns a function to export data to a file using the UserContext download handler. * * @returns {Function} The exportDataToFile function */ export declare const useExportDataToFile: () => ({ data, filename, type }: ExportDataParams) => Promise; /** * Hook that returns a function to download binary files using the UserContext download handler. * * @returns {Function} The downloadBinaryFile function */ export declare const useDownloadBinaryFile: () => (filename: string, fileContent: number[]) => Promise; export {};