export declare enum HMSPollState { /** The poll is created but not started yet. */ created = 0, /** The poll has started and is currently active. */ started = 1, /** The poll has been stopped and is no longer active. */ stopped = 2 }