import type { KanbanRendererOptions } from './types'; /** * Renders a Kanban board with the given properties * @param options - Properties for the Kanban board * @returns HTML representation of the Kanban board */ export declare function renderKanban(options: KanbanRendererOptions): string;