export declare const CHART_FRAME_SLOTS: readonly ["root", "svg"]; export declare const BAR_CHART_SLOTS: readonly ["root", "svg", "axis", "axisLabel", "grid", "axisLine", "bar", "legend", "legendItem", "legendSwatch"]; export declare const LINE_CHART_SLOTS: readonly ["root", "svg", "axis", "axisLabel", "grid", "mark", "point", "legend", "legendItem", "legendSwatch"]; export declare const AREA_CHART_SLOTS: readonly ["root", "svg", "axis", "axisLabel", "grid", "mark", "area", "areaOutline", "legend", "legendItem", "legendSwatch"]; export declare const DONUT_CHART_SLOTS: readonly ["root", "svg", "arc", "centerLabel", "centerSubLabel", "legend", "legendItem", "legendSwatch"]; /** Slots `` paints — the wrapper and the SVG it measures. */ export type ChartFrameSlot = (typeof CHART_FRAME_SLOTS)[number]; /** Slots `` paints. */ export type BarChartSlot = (typeof BAR_CHART_SLOTS)[number]; /** Slots `` paints. */ export type LineChartSlot = (typeof LINE_CHART_SLOTS)[number]; /** Slots `` paints. */ export type AreaChartSlot = (typeof AREA_CHART_SLOTS)[number]; /** Slots `` paints. */ export type DonutChartSlot = (typeof DONUT_CHART_SLOTS)[number];