import type { HMSPoll } from './HMSPoll'; import type { HMSPollQuestionCreateParams } from './HMSPollQuestionCreateParams'; export interface HMSPollCreateParams extends Pick { pollId?: HMSPoll['pollId']; questions?: HMSPollQuestionCreateParams[]; }