import { FC } from 'react'; export type ChartProps = { color?: string; variant?: 'default' | 'flat'; hasError?: boolean; loading?: boolean; target: number; values: number[]; unit?: string; range: { start: Date; end: Date; }; styles?: ChartStyles; }; export declare const Chart: FC; declare const defaultStyles: (theme: import("../../../BrandConfigProvider").Theme) => readonly ["Chart", import("../../../BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './../../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type ChartStyles = NamedStylesProp; export {};