import React, { ReactNode } from "react"; export interface ReportChartFigureProps { children: ReactNode; } /** * Chart container styled with spacing for layout in report pages */ export declare const ReportChartFigure: React.FunctionComponent;