/** Answer to a form */
export interface Answer {
    /** Question of the answer */
    question: string;
    /** Answer value to the question */
    value: string;
}
//# sourceMappingURL=Answer.d.ts.map