import { FC, SVGAttributes } from 'react'; import { AreaConfig, MarkerConfig } from 'eazychart-core/src/types'; export interface AreaProps extends SVGAttributes { xDomainKey: string; yDomainKey: string; area?: AreaConfig; marker?: MarkerConfig; } export declare const Area: FC;