import { MalloyVegaDataRecord } from '../types'; import { NestField } from '../../data_tree'; type CustomTooltipGetterOptions = { explore: NestField; records: MalloyVegaDataRecord[]; }; export declare function getCustomTooltipEntries({ explore, records, }: CustomTooltipGetterOptions): { label: string; value: string | (() => import("solid-js").JSX.Element); highlight: boolean; entryType: "list-item" | "block"; ignoreHighlightState?: boolean; color?: string; }[]; export {};