import { type PollLayout, type PollSize } from './Poll.svelte'; type Example = 'release' | 'results' | 'binary' | 'multiple' | 'cards' | 'changeable' | 'closed'; type $$ComponentProps = { example?: Example; size?: PollSize; layout?: PollLayout; showResults?: boolean; allowChange?: boolean; multiple?: boolean; showPercent?: boolean; showCounts?: boolean; sortByVotes?: boolean; disabled?: boolean; }; declare const PollStory: import("svelte").Component<$$ComponentProps, {}, "">; type PollStory = ReturnType; export default PollStory;