import { MouseEvent, ReactNode } from 'react'; type RadioBarLineProps = { percentage: number; value: number; tooltipLabel?: string; className: string; dataTestId?: string; dataFeature?: string | null; onClick?: (e: MouseEvent) => void; }; export declare function RatioBarLine({ percentage, tooltipLabel, className, value, dataFeature, onClick, dataTestId, }: RadioBarLineProps): import("react/jsx-runtime").JSX.Element | null; export declare const RatioBarComposition: ({ children }: { children: ReactNode; }) => import("react/jsx-runtime").JSX.Element; export {};