import { type FC, type HTMLAttributes, type ReactNode, type Ref } from 'react';
export interface LineChartBodyProps extends HTMLAttributes {
ref?: Ref;
/** Recharts subcomponents — ``, ``, ``, ``, ``, ``. */
children?: ReactNode;
/**
* Body height passed to recharts' ``. Defaults to the
* Figma single-line plot height (`LINE_CARD_HEIGHT - LINE_HEADER_HEIGHT`).
*/
height?: number;
}
export declare const LineChartBody: FC;