///
import { TextProps } from './Text';
export declare type FormattedTextProps = {
children: string | number;
format?: string;
} & Omit;
export declare function FormattedText({ children, format, ...attributes }: FormattedTextProps): JSX.Element;
export declare namespace FormattedText {
var displayName: string;
}