export declare const RECIPIENT_TYPE: { readonly TO: "TO"; readonly CC: "CC"; readonly BCC: "BCC"; }; export type RecipientType = (typeof RECIPIENT_TYPE)[keyof typeof RECIPIENT_TYPE]; export declare const RECIPIENT_TYPE_COLOR: Record; export interface EmailAddressTopic { EmailTopicId: number; EmailAddressId: number; Address: string; RecipientType: RecipientType; IsActive: boolean; }