import { type StyledProps } from "./Styled"; /** * moaui Styled ChartLine * * @param props - data, width, height, axisTop, axisRight, axisBottom, axisLeft, legends, pointSize * @example * * @returns React.ReactElement */ declare function ChartLine(props: StyledProps): import("react/jsx-runtime").JSX.Element; declare const SampleProps: { data: { id: string; color: string; data: { x: number; y: number; }[]; }[]; width: string; height: string; legends: boolean; axisTop: boolean; axisTopTickValues: number; axisTopTickRotation: number; axisTopDecimals: number; axisTopLegend: string; axisTopLegendOffset: number; axisTopLegendPosition: string; axisRight: boolean; axisRightTickValues: number; axisRightTickRotation: number; axisRightDecimals: number; axisRightLegend: string; axisRightLegendOffset: number; axisRightLegendPosition: string; axisBottom: boolean; axisBottomTickValues: number; axisBottomTickRotation: number; axisBottomDecimals: number; axisBottomLegend: string; axisBottomLegendOffset: number; axisBottomLegendPosition: string; axisLeft: boolean; axisLeftTickValues: number; axisLeftTickRotation: number; axisLeftDecimals: number; axisLeftLegend: string; axisLeftLegendOffset: number; axisLeftLegendPosition: string; pointSize: number; marginTop: number; marginRight: number; marginBottom: number; marginLeft: number; xDecimals: number; yDecimals: number; }; export default ChartLine; export { type StyledProps as ChartLineProps, SampleProps as ChartLineSample, }; //# sourceMappingURL=index.d.ts.map