import React from 'react';
import type { PollVote as PollVoteType } from 'stream-chat';
type PollVoteProps = {
    vote: PollVoteType;
};
export declare const PollVote: ({ vote }: PollVoteProps) => React.JSX.Element;
export type PollVoteListingProps = {
    votes: PollVoteType[];
};
export declare const PollVoteListing: ({ votes }: PollVoteListingProps) => React.JSX.Element;
export {};
