import { YAxisProps } from 'recharts'; import { Props as AreaProps } from 'recharts/types/cartesian/Area'; export declare const data: { actualWorkforce: number; budgetedWorkforce: number; date: string; day: string; workerConsistency: number; }[]; export declare const areaChartArea: ({ dataKey: string; color: string; stroke: string; fillOpacity: number; name: string; legendType?: undefined; } | { dataKey: string; color: string; stroke: string; fillOpacity: number; name: string; legendType: string; })[]; export declare const areasYAxisRight: { dataKey: string; color: string; fill: string; fillOpacity: number; stroke: string; yAxisId: string; name: string; }[]; export declare const xAxisTickDefaultConfig: { fill: string; fontFamily: string; fontSize: number; textAnchor: string; x: number; y: number; }; export declare const yAxisStaticProps: YAxisProps; export declare const areaStaticProps: Omit, 'ref'>;