import React from 'react';
import type { Poll as PollClass } from 'stream-chat';
export declare const Poll: ({ isQuoted, poll }: {
    poll: PollClass;
    isQuoted?: boolean;
}) => React.JSX.Element | null;
