import { type PropsWithChildren, type ReactElement } from 'react'; import { HoneycombChartProps, HoneycombChartRef } from './types/honeycomb.js'; /** The honeycomb component */ export declare const _HoneycombChart: (props: PropsWithChildren & import("react").RefAttributes) => import("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) => import("react").ReactElement | null) & { EmptyState: ({ children }: import("../index.js").EmptyStateProp) => import("react/jsx-runtime").JSX.Element; ErrorState: ({ children }: import("../index.js").ErrorStateProps) => import("react/jsx-runtime").JSX.Element; Legend: (props: import("./slots/HoneycombLegend.js").HoneycombLegendProps) => null; Intent: { (props: import("../../index.js").IntentProps): null; displayName: string; }; ColorRule: { (_props: import("../index.js").ColorRuleProps): null; displayName: string; }; Toolbar: { (props: import("./types/toolbar.js").HoneycombToolbarSlotProps): null; displayName: string; }; DownloadCSV: { (): null; displayName: string; }; };