import { KanbanTheme } from './theme'; export interface CompleteKanbanCardProps { handleDragStart: (e: DragEvent, card: KanbanCardProps) => void; setDragging: (value: boolean) => void; dragable?: boolean; card: KanbanCardProps; indicatorClassName?: string; theme: KanbanTheme; } export interface KanbanCardProps { title: string; id: string; column: string; onClick?: () => void; } export declare const KanbanCard: ({ handleDragStart, card, dragable, setDragging, indicatorClassName, theme, }: CompleteKanbanCardProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Card.d.ts.map