import { StoryObj } from '@storybook/react'; import { Panel } from './Panel'; declare const meta: { title: string; component: typeof Panel; args: { header: string; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithTools: Story;