import type { Ref } from 'react'; import type { BaseProps, ForwardRefForwardPropsComponent, NoChildrenProp } from '../../types'; export interface EmailDisplayProps extends BaseProps, NoChildrenProp { /** Email address, no 'mailto:' scheme */ value?: string; /** The text to be displayed. */ displayText?: string; /** * Controls styling of the field. * @default 'link' */ variant?: 'link' | 'text'; /** Ref for the wrapping element. */ ref?: Ref; } declare const EmailDisplay: ForwardRefForwardPropsComponent; export default EmailDisplay; //# sourceMappingURL=EmailDisplay.d.ts.map