import { Ref } from 'react'; import { Treemap, TreemapConfigInterface } from '@unovis/ts'; export declare type VisTreemapRef = { component?: Treemap; }; export declare type VisTreemapProps = TreemapConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisTreemapSelectors: typeof import("@unovis/ts/dist/components/treemap/style"); export declare const VisTreemap: ((props: VisTreemapProps) => JSX.Element | null);