export interface CustomerPlus { firstName: string; middleName: string; lastName: string; state: string; city: string; street: string; zipCode: string; phoneNumber: string; emailAddress: string; ssn: string; } export interface Answer { text: string; correct?: boolean; } export declare type Answers = Answer[]; export interface Question { type: string; text: string; answers: Answers; } export declare type Questions = Question[];