import { KanbanProps } from './Kanban'; export interface AddCardProps { column: string; labels: KanbanProps["labels"]; onCreate?: ({ column, title }: { column: string; title: string; }) => void; theme: KanbanProps["theme"]; } export declare const AddKanbanCard: ({ column, onCreate, labels, theme, }: AddCardProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AddCard.d.ts.map