export declare enum HMSPollQuestionType { /** The question allows for a single choice answer. */ singleChoice = 0, /** The question allows for multiple choice answers. */ multipleChoice = 1, /** The question expects a short text answer. */ shortAnswer = 2, /** The question expects a long text answer. */ longAnswer = 3 }