import type { BoardData, Deal, Customer, EditableDeal, PartialComment } from './types'; type KanbanBoardProps = { initialData: BoardData; addNewDeal: (newDeal: Deal) => Promise<{ success: boolean; errors?: Record; }>; updateDeal: (updatedDeal: Partial) => Promise<{ success: boolean; errors?: Record; }>; addComment: (dealId: string, comment: PartialComment) => Promise<{ success: boolean; errors?: Record; }>; addNewCustomer: (newCustomer: Partial) => Promise<{ success: boolean; errors?: Record; }>; }; export declare function CRMKanbanBoard({ initialData, addNewDeal, updateDeal, addComment, addNewCustomer, }: KanbanBoardProps): import("react/jsx-runtime").JSX.Element; export {};