import React from 'react';
import type { PollOption } from 'stream-chat';
export type PollOptionWithVotesProps = {
    option: PollOption;
    countVotesPreview?: number;
    showAllVotes?: () => void;
};
export declare const PollOptionWithLatestVotes: ({ countVotesPreview, option, showAllVotes, }: PollOptionWithVotesProps) => React.JSX.Element;
