import { type ReactNode } from 'react'; import { type GaugeChartToolbarProps } from './GaugeChartToolbar.js'; import type { GaugeChartData } from '../../types/gauge-chart.js'; export interface GaugeChartLayoutProps { value: number | GaugeChartData; valueAccessor?: string; prefixIcon?: ReactNode; intents: GaugeChartToolbarProps['intents']; toolbar: GaugeChartToolbarProps['toolbar']; } export declare const GaugeChartLayout: (props: GaugeChartLayoutProps & import("react").RefAttributes) => import("react").ReactElement | null;