/**
 * Types of polls
 * @author Yuen Ler Chow
 */
declare enum ZoomPollType {
    Poll = "Poll",
    AdvancedPoll = "AdvancedPoll",
    Quiz = "Quiz"
}
export default ZoomPollType;
