import { IntentProps } from '../../../../core/slots/Intent/Intent.js'; import { BaseToolbarProps, InternalChartToolbarConfig } from '../../../core/types/toolbar.js'; /** Props for the ChartToolbar implementation in MeterBarChart * @public */ export type MeterBarToolbarSlotProps = BaseToolbarProps; /** * Properties configurable by MeterBarConfiguration Provider * @public */ export type MeterBarToolbarConfig = MeterBarToolbarSlotProps & { intents?: Array; }; export interface MeterBarToolbarInternalProps extends InternalChartToolbarConfig { /** Decides if the toolbar is visible or hidden * @defaultValue false */ hidden?: boolean; intents?: Array; } export declare const defaultToolbarInternalConfig: MeterBarToolbarInternalProps;