import React from 'react'; import { RefProps } from '../add-modal'; import { IReportChartBlock, ChartSearchVO } from '../../store'; export declare type ChartMap = { component: React.FC; name: string; group: string; available?: () => Promise; }; export declare const defaultCharts: Map; export declare function addChartsMap(extraCharts: Map): void; interface Props { innerRef: React.MutableRefObject; data?: IReportChartBlock; linkTo: (url: string) => void; } export interface ChartRefProps { submit: () => Promise; } declare const _default: React.FunctionComponent; export default _default;