import { ReactNode } from 'react'; type RatioBarProps = { amount?: number; errors?: number; hideLabel?: boolean; notApplicableLabel?: ReactNode; total: number; }; export declare const RatioBar: ({ amount, errors, hideLabel, notApplicableLabel, total, }: RatioBarProps) => import("react/jsx-runtime").JSX.Element; export {};