import { type HTMLAttributes, type ReactNode } from "react";
import type { KanbanItemProps } from "./kanban-types";
export type KanbanCardsProps = Omit, "children" | "id"> & {
children: (item: T) => ReactNode;
id: string;
};
export declare const KanbanCards: ({ children, className, ...props }: KanbanCardsProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=kanban-cards.d.ts.map