import React from 'react'; import { KRow } from './Kanban'; export interface KanbanColumnProps { title?: string; ttl?: number; menu?: { label?: string; onClick?: string; }[]; index?: number; items?: KRow[]; isCombineEnabled?: boolean; useClone?: boolean; isScrollable?: boolean; renderCard?: any; onCreateCard?: (column: string) => void; onSelectCard?: (item: any) => void; } export declare const KanbanColumn: React.FC;