import type { DataTypes } from '../../types'; import type { Building, Site, DbFile } from '../../types/dbTypes'; import type { FileRow } from '../../types/files'; interface ExportDataProps { data: Building[] | Site[] | FileRow[] | DbFile[]; variant?: 'secondary' | 'ghost'; type?: DataTypes; className?: string; } export default function ExportData({ data, variant, type, className }: ExportDataProps): import("react").JSX.Element; export {}; //# sourceMappingURL=ExportData.d.ts.map