import type { NumberFormatAllProps } from './NumberFormatBase';
export type NumberFormatPercentProps = Omit<NumberFormatAllProps, 'currency' | 'currencyDisplay' | 'currencyPosition' | 'compact'>;
declare const NumberFormatPercent: {
    (props: NumberFormatPercentProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default NumberFormatPercent;
