import { PropsWithChildrenAndClassName } from '../../types'; interface EmailTextProps extends PropsWithChildrenAndClassName { address?: string; } /** * **JSON-format type: email** * * Attributes: * * `address` The email address. If children are included, they should be the ones rendered - if no children are included, the `address` should be rendered. * * Children: `[any*]` * * @param address * @param children * @param props * @constructor */ declare function EmailText({ address, children, ...props }: EmailTextProps): import("react/jsx-runtime").JSX.Element; export { EmailText };