import { type PropsWithChildren } from 'react'; import { HoneycombChartProperties } from '../types/honeycomb-config-properties.js'; import { HoneycombRequiredConfigProps, HoneycombSlotsConfig } from '../types/honeycomb-internal.js'; import { HoneycombChartAccessorDataProps, HoneycombChartNumericalProps, HoneycombChartProps } from '../types/honeycomb.js'; export declare const isHoneycombChartAccessorDataProps: (props: PropsWithChildren) => props is HoneycombChartAccessorDataProps; export declare const checkNumericalDataset: (props: PropsWithChildren) => props is HoneycombChartNumericalProps; export declare const getDefaultColorScheme: (props: PropsWithChildren, contextConfig: HoneycombChartProperties) => "blue" | "brown" | "grey" | "magenta" | "orange" | "pink" | "purple" | "red" | "turquoise" | "yellow" | "status" | import("../../index.js").ColoredRange[] | "categorical" | "purple-rain" | "swamps" | "fireplace" | "blue-steel" | "rainbow" | "categorical-inverted" | "purple-rain-inverted" | "swamps-inverted" | "fireplace-inverted" | "blue-steel-inverted" | "rainbow-inverted" | "log-status" | "log-level" | "apdex" | "security-risk-level" | "vulnerability-status" | "threshold" | "log-status-inverted" | "log-level-inverted" | "apdex-inverted" | "security-risk-level-inverted" | "vulnerability-status-inverted" | "threshold-inverted" | "status-inverted" | "pink-purple" | "blue-turquoise" | "moss" | "petrol" | "pear" | "pink-purple-inverted" | "blue-turquoise-inverted" | "blue-inverted" | "grey-inverted" | "moss-inverted" | "turquoise-inverted" | "pink-inverted" | "yellow-inverted" | "petrol-inverted" | "purple-inverted" | "pear-inverted" | "brown-inverted" | "red-inverted" | "magenta-inverted" | "orange-inverted" | "orange-blue" | "red-blue" | "red-purple" | "blue-moss" | "purple-yellow" | "red-green" | "orange-petrol" | "pink-green" | "orange-blue-inverted" | "red-blue-inverted" | "red-purple-inverted" | "blue-moss-inverted" | "purple-yellow-inverted" | "red-green-inverted" | "orange-petrol-inverted" | "pink-green-inverted" | import("../../index.js").CustomColorPalette; export declare const buildHoneycombConfig: (props: PropsWithChildren, contextConfig: HoneycombChartProperties, slots: HoneycombSlotsConfig) => HoneycombRequiredConfigProps;