import { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; parameters: { layout: string; }; tags: string[]; argTypes: { style: { width: string; }; }; args: { /** 列表值 */ dataSource: { label: string; value: string; }[]; columns: { dataIndex: string; title: string; search: { type: string; }; }[]; }; }; export default meta; type Story = StoryObj; export declare const Large: Story;