import { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import('react').FC; parameters: { layout: string; }; tags: string[]; argTypes: { style: { width: string; }; }; args: { /** 列表值 */ options: { label: string; value: string; }[]; /** 默认值 */ defaultValue: string; }; }; export default meta; type Story = StoryObj; export declare const Large: Story;