import { Poll } from '../../types/videoPlayer';
interface PollsNotificationProps {
    showPoll: boolean;
    polls: Poll[];
    currentTime: number;
    onClick: (poll: Poll, polls: Poll[]) => void;
    quizPosition: 'top-left' | 'top-center' | 'top-right' | null;
}
export declare const PollNotification: ({ showPoll, polls, currentTime, onClick, quizPosition }: PollsNotificationProps) => any;
export {};
