import React from "react"; import { BoardItem, BoardItemViewProps } from "./board_types"; export interface BoardColumnProps { id: string; title: string; items: BoardItem[]; index: number; ItemComponent: React.ComponentType>; isDragging: boolean; isDragOverColumn: boolean; allowReorder?: boolean; loading?: boolean; hasMore?: boolean; error?: Error; onLoadMore?: () => void; onAddItem?: () => void; totalCount?: number; color?: any; style?: React.CSSProperties; } export declare const BoardColumn: (props: BoardColumnProps) => React.ReactElement;