import { FC, SVGAttributes } from 'react'; import { AreaCurve, AreaData } from 'eazychart-core/src/types'; export interface AreaPathProps extends SVGAttributes { shapeData?: AreaData; curve?: AreaCurve; beta?: number; stroke?: string; strokeWidth?: number; } export declare const AreaPath: FC;