import { StoryObj } from '@storybook/react'; import { default as Modal } from '../Modal'; declare const meta: { component: typeof Modal; title: string; parameters: { docs: { description: { component: string; }; story: { height: string; }; }; }; argTypes: { id: { description: string; control: { type: "text"; }; }; isOpen: { description: string; control: { type: "boolean"; }; }; onClose: { description: string; control: { type: "object"; }; }; backDrop: { description: string; control: { type: "boolean"; }; }; isCloseable: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;