import type { KanbanCard, KanbanColumn } from "./types"; interface KanbanColumnProps { column: KanbanColumn; draggable: boolean; showAddButton: boolean; onCardClick?: (card: KanbanCard, columnId: string) => void; onAddCard?: (columnId: string) => void; } export declare function KanbanColumnComponent({ column, draggable, showAddButton, onCardClick, onAddCard, }: KanbanColumnProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=kanban-column.d.ts.map