import type { Meta, StoryObj } from "@storybook/react"; import { KanbanBoard } from "./kanban-board"; declare const meta: Meta; export default meta; type Story = StoryObj; /** * Default kanban board with three standard columns. * Includes basic tasks with titles and descriptions. */ export declare const Default: Story; /** * Kanban board showcasing different task priorities. * Uses color coding and priority badges. */ export declare const WithPriorities: Story; /** * Simplified kanban board with minimal task information. * Good for quick task tracking. */ export declare const SimpleTasks: Story; /** * Empty kanban board ready for new tasks. * Shows the board structure without any cards. */ export declare const EmptyBoard: Story; /** * Complete kanban board with multiple columns and detailed cards. * Demonstrates all available card properties. */ export declare const FullBoard: Story; //# sourceMappingURL=KanbanBoard.stories.d.ts.map