import React from 'react'; import { Trace } from './TraceLine'; type Props = { trace1: Trace; trace2?: Trace; }; export declare const Legend: (props: Props) => React.JSX.Element; declare const defaultStyles: (theme: import("../../BrandConfigProvider").Theme) => readonly ["LineChartLegend", import("../../BrandConfigProvider/styles/createStyles").NamedStyles<{ container: { flexDirection: "row"; alignItems: "center"; }; traceLabelText: { paddingLeft: number; paddingRight: number; }; }>]; declare module './../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export {};