import React from 'react'; import type { CommonComponentProps } from '../types'; import type { GetRef } from '../utils/refs'; interface FormattedTextProps extends CommonComponentProps { children?: string; formatter?: (text: string) => string; getRef?: GetRef; id?: string; } export declare function FormattedText({ 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, formatter, getRef, id, ...rest }: FormattedTextProps): React.JSX.Element; export {};