import { type PropsWithChildren } from 'react'; import { HoneycombRequiredConfigProps } from '../types/honeycomb-internal.js'; import type { HoneycombTileData } from '../types/honeycomb.js'; interface HoneycombFilteredDataProviderProps { data: HoneycombTileData[]; config: HoneycombRequiredConfigProps; } export declare const HoneycombFilteredDataProvider: { ({ data, config, children, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};