import React from 'react'; import { Trace } from './TraceLine'; import { PointData } from './useChartData'; type Props = { title: string; trace1: Trace; trace2?: Trace; enabled?: boolean; dateRange: { start: Date; end: Date; }; onShare?: (config: { selectedPoints: PointData[]; title: string; dataUri?: string; dateRange: [Date, Date]; }) => void; }; declare const LineChartWrapper: (props: Props & { padding?: number; }) => React.JSX.Element; export { LineChartWrapper as LineChart }; declare const defaultStyles: (theme: import("../../BrandConfigProvider").Theme) => readonly ["LineChart", import("../../BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } }