export type Maybe = T | null; export type InputMaybe = Maybe; export interface AutocompleteData { id: string; name: string; } export interface CallToActionFormType { email: string; message?: string; names?: string; phone?: string; user_type?: string; company_web?: string; } export type AlertStatusType = "success" | "error" | null; export interface ConfigurationForm { id?: Maybe; type?: Maybe; email?: Maybe; phone?: Maybe; date_meeting?: Maybe; company_web?: Maybe; names?: Maybe; user_type?: Maybe; message?: Maybe; contact_phone?: Maybe; comunication_leads?: Maybe; video?: Maybe<{ id?: Maybe; url?: Maybe; }>; }