import React from 'react'; export declare type Data = { text: string; value: string | number | null | undefined; }; declare type Props = { data: readonly Data[]; colors: readonly string[]; constraint?: boolean; fontSize?: 'xs' | 's' | 'm'; }; export declare const DEFAULT_COLORS: readonly ["#FC4449", "#FF6D32", "#FF9724", "#F7CC1D", "#59D72C", "#00BD59"]; export declare const PyramidChart: React.FC; export {};