import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
import { type TestableProps } from '../../../utils/testId';
export interface LineChartEmptyProps extends HTMLAttributes, TestableProps {
ref?: Ref;
/** Body height override. Defaults to the standard plot height. */
height?: number;
/**
* Empty-state message. Pass the copy you want to render (`"No data"`, a
* localised string, or richer JSX). Omit (or pass `null`) to render only
* the dashed grid frame — the idiom for loading skeletons. There is no
* default text.
*/
children?: ReactNode;
}
export declare const LineChartEmpty: FC;