export interface EmailTopicFormValues { EmailTopicId: number | null; EmailTopicName: string; Description: string; DelayTimeMinutes: string; IsActive: boolean; AddressIdsTO: number[]; AddressIdsCC: number[]; AddressIdsBCC: number[]; } export declare const INITIAL_VALUES: EmailTopicFormValues; export type RecipientField = "AddressIdsTO" | "AddressIdsCC" | "AddressIdsBCC"; export declare const RECIPIENT_FIELDS: { label: string; field: RecipientField; }[];