import { type PropsWithChildren } from 'react'; import { HoneycombChartProps, HoneycombChartRef } from './types/honeycomb.js'; /** The honeycomb component */ export declare const _HoneycombChart: (props: PropsWithChildren & import("react").RefAttributes) => React.ReactElement | null; /** * The `HoneycombChart` is used to display data in a grid using various shapes * for data points. * @public */ export declare const HoneycombChart: ((props: PropsWithChildren & import("react").RefAttributes) => React.ReactElement | null) & { EmptyState: ({ children }: import("../core/slots/chart-states/EmptyStateSlot.js").EmptyStateSlotProps) => import("react/jsx-runtime.js").JSX.Element; ErrorState: ({ children }: import("../core/slots/chart-states/ErrorStateSlot.js").ErrorStateSlotProps) => import("react/jsx-runtime.js").JSX.Element; Legend: (props: import("./slots/HoneycombLegend.js").HoneycombLegendProps) => null; Intent: { (props: import("../../core/slots/Intent/Intent.js").IntentProps): null; displayName: string; }; };