export declare type Forms = { id: number; name?: string | null; description?: string | null; isTest: boolean; minScore?: number | null; quantityToAnswer?: number | null; randomOrderEnabled: boolean; maxAttempts?: number | null; deadlinesEnabled: boolean; afterDeadlineAnswerEnabled: boolean; startDateTime?: string | null; endDateTime?: string | null; skipQuestionWithoutAnswer: boolean; backQuestionWithAnswer: boolean; feedbackScoreEnabled: boolean; requireSign: boolean; feedbackScoreOptions?: (any[] | boolean | number | string) | null; feedbackCommentEnabled: boolean; feedbackCommentOptions?: (any[] | boolean | number | string) | null; createdBy?: number | null; workflowJson?: (any[] | boolean | number | string) | null; webhookUrl?: string | null; webhookType?: Forms.webhookType | null; createdAt: string; updatedAt: string; deletedAt?: string | null; }; export declare namespace Forms { enum webhookType { POST = "POST", PUT = "PUT" } }