import { Story } from '@storybook/react'; import { ModalProps } from './Modal'; declare const _default: { title: string; component: ({ onClose, children, height, width, style, closeOnClickOutside, closeOnEsc, ...other }: ModalProps) => JSX.Element; argTypes: { children: { table: { disable: boolean; }; }; onClose: { table: { disable: boolean; }; action: string; }; style: { table: { disable: boolean; }; }; }; }; export default _default; export declare const Demo: Story;