/** ℹ️ This enum is non-exhaustive. */ export declare const QuestionType: { readonly Choice: "choice"; readonly Text: "text"; readonly Numeric: "numeric"; readonly MultiChoice: "multi_choice"; }; export type QuestionType = (typeof QuestionType)[keyof typeof QuestionType];