/**
 * Current state of a poll
 * @author Yuen Ler Chow
 */
declare enum ZoomPollStatus {
    NotStart = "NotStart",
    Started = "Started",
    Ended = "Ended",
    Sharing = "Sharing"
}
export default ZoomPollStatus;
