import React from 'react';
type TextProps = {
    id: string;
    defaultMessage: string;
    html?: boolean;
};
/**
 *
 * @example
 * <Text id="header.title" defaultMessage="My Notifications" />
 */
export default function Text({ id, defaultMessage, html }: TextProps): React.JSX.Element;
export {};
