import { ComplaintCategoryOutputModel } from "./ComplaintCategoryOutputModel"; export declare class AddressModel { streetAddress?: string; optionalAddress?: string; zip?: string; city?: string; county?: ChoicesModel; state?: ChoicesModel; country?: ChoicesModel; } export declare class ChoicesModel { value: string; text: string; } export declare class ContactUsInqueryModel { inquiryId?: string; inquiryBy: string; userType?: ChoicesModel; firstName: string; lastName: string; address?: AddressModel; ssn: string; claimantId: string; ean: string; fein: string; selectedReason?: ChoicesModel; complaintCategory: ComplaintCategoryOutputModel; question: string; department: string; email: string; phone: string; altPhone: string; streetAddress: string; optionalAddress: string; state: string; city: string; zip: string; country: string; division: ChoicesModel; unit: ChoicesModel; assignCaseTo: ChoicesModel; caseOwnerGroupKey: ChoicesModel; closeCaseReason: ChoicesModel; generatedThrough?: ChoicesModel; constructor(); } //# sourceMappingURL=contactUsInqueryModel.d.ts.map