@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
14 lines (13 loc) • 464 B
TypeScript
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 {};