import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "closed" | "multiple" | "cards" | "release" | "results" | "binary" | "changeable"; size?: import("./Poll.svelte.ts").PollSize; layout?: import("./Poll.svelte.ts").PollLayout; showResults?: boolean; allowChange?: boolean; multiple?: boolean; showPercent?: boolean; showCounts?: boolean; sortByVotes?: boolean; disabled?: boolean; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; layout: { control: "select"; options: string[]; }; showResults: { control: "boolean"; }; allowChange: { control: "boolean"; }; multiple: { control: "boolean"; }; showPercent: { control: "boolean"; }; showCounts: { control: "boolean"; }; sortByVotes: { control: "boolean"; }; disabled: { control: "boolean"; }; }; args: { example: "release"; size: "md"; layout: "list"; showResults: false; allowChange: false; multiple: false; showPercent: true; showCounts: false; sortByVotes: false; disabled: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Results: Story; export declare const Binary: Story; export declare const Multiple: Story; export declare const Cards: Story; export declare const Changeable: Story; export declare const Closed: Story; export declare const Compact: Story;