import React from 'react'; import type { FieldsToExportOption, FieldsToExport } from '../modules/export'; import type { ExportAggregation, ExportQuery } from '../export/export-types'; type ExportCodeViewProps = { ns: string; query?: ExportQuery; aggregation?: ExportAggregation; fields: FieldsToExport; selectedFieldOption: FieldsToExportOption; }; declare function ExportCodeView({ ns, query, aggregation, fields, selectedFieldOption, }: ExportCodeViewProps): JSX.Element; declare const ConnectedExportCodeView: import("react-redux").ConnectedComponent> | undefined; store?: import("redux").Store | undefined; }>; export { ExportCodeView as UnconnectedExportCodeView }; export { ConnectedExportCodeView as ExportCodeView }; //# sourceMappingURL=export-code-view.d.ts.map