import { ElementType, ReactNode } from 'react'; import { KanbanOptions } from '@42/core/kanban'; export interface KanbanProps extends Partial { /** Element/tag rendered as the controller root. Defaults to `"div"`. */ as?: ElementType; className?: string; children?: ReactNode; /** Fired on `kanban:move` — detail: `{ item, from, to, fromIndex, toIndex, order }` */ onMove?: (detail: unknown, event: CustomEvent) => void; /** Extra props are forwarded to the rendered `
` element. */ [key: string]: unknown; } export declare function Kanban(props: KanbanProps): import("react").JSX.Element;