/**
 * Gallery entry — kanban (dynamic board projection: group-field universe,
 * card bucketing, column ops, move-card writes, composed undo-history).
 */
import { createKanbanCore } from '../../kanban/index.js';
import { createUndoHistoryCore } from '../../undo-history/index.js';
import type { RegisteredComponent } from '../../inspector/index.js';
type KanbanConfig = {
    undoHistory?: ReturnType<typeof createUndoHistoryCore>;
};
export declare const kanbanEntry: RegisteredComponent<KanbanConfig, ReturnType<typeof createKanbanCore>>;
export {};
//# sourceMappingURL=kanban.d.ts.map