import { StoryObj } from '@storybook/react'; import { default as FancyModal } from '../FancyModal'; import { TModal } from '../../../molecules/Modal'; declare const meta: { component: typeof HelperComponent; title: string; parameters: { docs: { description: { component: string; }; story: { height: string; }; }; }; argTypes: { appendToDomID: { description: string; control: { type: "text"; }; }; modals: { description: string; control: { type: "object"; }; }; zIndex: { description: string; control: { type: "number"; }; }; closeModal: { description: string; control: { type: "object"; }; }; }; }; export default meta; type Story = StoryObj; declare function HelperComponent(props: React.ComponentProps & Omit): import("react/jsx-runtime").JSX.Element; declare namespace HelperComponent { var displayName: string; } export declare const Primary: Story;