export interface PopupWidgetComponentProps { quizId: string; dialogDimensions?: { width: string; height: string; }; /** * Открыть квиз через X секунд, 0 - сразу, null - не открывать */ autoShowQuizTime?: number | null; hideOnMobile?: boolean; openOnLeaveAttempt?: boolean; fullScreen?: boolean; } export type PopupWidgetParams = PopupWidgetComponentProps;