import React from "react"; import { DropResult } from "react-beautiful-dnd"; export interface KRow { id: string; title: string; lastUpdated?: Date; } export interface KColumn { id?: any; title?: string; ttl?: number; menu?: { label: string; onClick?: any; }[]; rows?: KRow[]; } export interface BaseKanbanProps { containerHeight?: number; useClone?: boolean; isCombineEnabled?: boolean; withScrollableColumns?: boolean; renderCard?: (item?: any) => any; onDrag?: (result: DropResult) => void; onCreateColumn?: () => void; columns?: Array; onCreateCard?: (column: string) => void; onSelectCard?: (item: any) => void; } export declare const Kanban: React.FC;