export type PollConfigType = 'single' | 'multiple'; export declare const PollConfigStatus: { readonly PENDING: "pending"; readonly IN_PROGRESS: "in progress"; readonly COMPLETED: "completed"; }; export type PollConfigStatusType = (typeof PollConfigStatus)[keyof typeof PollConfigStatus]; export declare const MAX_POLL_OPTIONS = 10;