import { PollConfigStatusType } from '@scrimmage/schemas'; export interface PollTimeRestrictionOptionsReturn { status: PollConfigStatusType; timeLeft?: number; } export declare const getPollTimeRestrictions: (status: PollConfigStatusType, startedAt: Date | string, completionDurationInMinutes?: number) => PollTimeRestrictionOptionsReturn;