import React from 'react';
export type PollOptionListProps = {
    optionsDisplayCount?: number;
};
export declare const PollOptionList: ({ optionsDisplayCount }: PollOptionListProps) => React.JSX.Element;
