import { Question } from './Question';
/** Description of a form */
export interface Description {
    /** Name of the form */
    name: string;
    /** List of available questions for the form */
    questions: Question[];
}
//# sourceMappingURL=Description.d.ts.map