import { type VariantProps } from "class-variance-authority"; import { emailTextVariants } from "./variants.js"; export * from "./variants.js"; type EmailTextProps = VariantProps & { email: string; /** * When true, wraps in `` with hover underline. * Use true on detail/profile pages. Default: false. */ linked?: boolean; }; /** * Consistent email address display control. * * All email addresses rendered in the app must use this component so they * share the same monospace, visually distinct style. * * @example * * */ export declare function EmailText({ email, linked, size, tone, }: EmailTextProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map