import type { AreaChartProps } from '@visactor/react-vchart'; import React from 'react'; export interface AreaProps extends Omit { id?: string; } export declare function Area(props: AreaProps): React.JSX.Element;