UNPKG

fui-fancyui

Version:
51 lines (50 loc) 1.31 kB
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<typeof meta>; declare function HelperComponent(props: React.ComponentProps<typeof FancyModal> & Omit<TModal, 'onClose' | 'isOpen'>): import("react/jsx-runtime").JSX.Element; declare namespace HelperComponent { var displayName: string; } export declare const Primary: Story;