import type { StoryObj } from '@storybook/react'; import * as React from 'react'; declare const meta: { title: string; component: React.FC; argTypes: { children: { table: { disable: true; }; }; }; args: { children: React.JSX.Element[]; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;