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