import { PatchColor } from "../patch/VuiPatch";
type Props = {
    data: Array<Record<string, unknown>>;
    categoryKey: string;
    valueKey: string;
    childrenKey?: string;
    colors?: PatchColor[];
    height?: number;
    showTooltip?: boolean;
    "data-testid"?: string;
};
export declare const VuiTreeMap: ({ data, categoryKey, valueKey, childrenKey, colors, height, showTooltip, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
