import { Story } from '@storybook/preact/types-6-0'; import { ChoiceList, Choice, ChoiceListProps } from './ChoiceList'; declare const meta: { component: typeof ChoiceList; subcomponents: { Choice: typeof Choice; }; title: string; decorators: ((...args: any) => any)[]; args: { name: string; value: string; }; }; export default meta; export declare const SingleValue: Story>; export declare const MultipleValues: Story>; export declare const Disabled: Story>; export declare const WithAccessibilityLabel: Story>; export declare const Inline: Story>;