import IAddress from '../../Address'; export default interface IPreMeetingFormEmail { readonly english: boolean; readonly subject: string; readonly title: string; readonly pro_infos: { readonly full_name: string; readonly company_name: string; readonly email: string; readonly phone: string; readonly pro_logo?: File; }; readonly client_infos: { readonly full_name: string; readonly address?: IAddress; readonly email: string; }; readonly email_body?: { readonly inspiration_page_link?: string; readonly next_meeting_date?: Date; readonly next_meeting_time?: string; }; readonly product_list?: { readonly name: string; readonly slug: string; readonly img: string; readonly url: string; }[]; readonly email_footer?: { readonly facebook?: string; readonly instagram?: string; readonly website?: string; readonly notes?: string; }; readonly attachments?: File[]; }