export declare const treemapData: {
    name: string;
    children: ({
        name: string;
        value: number;
        showLabel: boolean;
    } | {
        name: string;
        value: number;
        showLabel?: undefined;
    })[];
}[];
export declare const treemapOptions: {
    title: string;
};
