UNPKG

payload-plugin-newsletter

Version:

Complete newsletter management plugin for Payload CMS with subscriber management, magic link authentication, and email service integration

28 lines (22 loc) 756 B
import { UIFieldClientComponent } from 'payload'; import React from 'react'; declare const BroadcastInlinePreview: UIFieldClientComponent; interface BroadcastInlinePreviewProps { data?: any; field?: any; path?: string; schemaPath?: string; } interface StatusBadgeProps { cellData?: string; rowData?: any; } declare const StatusBadge: React.FC<StatusBadgeProps>; interface EmailPreviewProps { content?: any; subject?: string; preheader?: string; } declare const EmailPreview: React.FC<EmailPreviewProps>; declare const WebhookConfiguration: React.FC; export { BroadcastInlinePreview, type BroadcastInlinePreviewProps, EmailPreview, type EmailPreviewProps, StatusBadge, type StatusBadgeProps, WebhookConfiguration };