export interface InvoicingPaymentLinkEmailPreviewProps { recipientName: string; accentColor?: string; companyName?: string; contactEmail?: string; logoUrl?: string; magicUrl?: string; } /** * Visual approximation of the backend payment-link collection email. Uses * branding settings (accent, logo, company name, contact email) and the * customer contact name — not shared HTML with the mailer. */ export declare function InvoicingPaymentLinkEmailPreview({ accentColor, companyName, contactEmail, logoUrl, magicUrl, recipientName, }: Readonly): import("react/jsx-runtime").JSX.Element; export default InvoicingPaymentLinkEmailPreview;