import { StoryObj } from '@storybook/react'; import { default as BackDrop } from './BackDrop'; declare const meta: { component: typeof BackDrop; title: string; parameters: { layout: string; docs: { description: { component: string; }; }; }; tags: string[]; argTypes: {}; }; export default meta; type Story = StoryObj; export declare const Primary: Story;