import type { ReactNode, HTMLAttributes } from "react";
export type KanbanBoardProps = HTMLAttributes & {
id: string;
children: ReactNode;
onAddItem?: () => void;
addButtonText?: string;
showAddButton?: boolean;
};
export declare const KanbanBoard: ({ id, children, className, onAddItem, addButtonText, showAddButton, ...props }: KanbanBoardProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=kanban-board.d.ts.map