export type KanbanCard = { id: string; title: string; description?: string; meta?: string; }; export type KanbanColumn = { id: string; title: string; description?: string; cards: KanbanCard[]; footerText?: string; }; export interface KanbanOptions { selector: string; columns: KanbanColumn[]; theme?: "light" | "dark"; hydrate?: boolean; onCardMove?: (payload: { cardId: string; from: string; to: string; }) => void; onAddCard?: (columnId: string) => KanbanCard | void; onAddColumn?: () => KanbanColumn | void; } //# sourceMappingURL=Kanban.types.d.ts.map