import { ECBasicOption } from 'echarts/types/dist/shared'; type Locale = 'en' | 'es'; export type Props = { options: ECBasicOption | null | undefined; width?: number; height?: number; locale?: Locale; }; export default function Echart({ options, width, height, locale, }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Echart.d.ts.map