import { TableColumnType } from "antd"; import "./font"; declare const useExport: ({ columns, data, fileName, pdfTheme }: { columns: TableColumnType[]; data: RecordType[]; fileName: string; pdfTheme?: "grid" | "striped" | "plain" | undefined; }) => { onExcelPrint: () => void; onCsvPrint: () => void; onPdfPrint: () => void; }; export default useExport;