UNPKG

component-library-mustafa-akagunduz-obss

Version:

Air Command System projesi için geliştirilmiş React component kütüphanesi

40 lines (39 loc) 1.05 kB
import type { StoryObj } from '@storybook/react-vite'; declare const meta: { title: string; component: import("react").FC<import("../components/DeleteModal").DeleteModalProps>; parameters: { layout: string; }; tags: string[]; argTypes: { isOpen: { control: "boolean"; }; isMultipleSelection: { control: "boolean"; }; isLoading: { control: "boolean"; }; aircraftCallSign: { control: "text"; }; aircraftCount: { control: "number"; }; }; args: { onClose: import("@vitest/spy").Mock<(...args: any[]) => any>; onDelete: import("@vitest/spy").Mock<(...args: any[]) => any>; t: (key: string) => string; isOpen: true; isMultipleSelection: false; aircraftCallSign: string; aircraftCount: number; isLoading: false; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Loading: Story;