import { Kanban } from '../base/kanban'; /** * Kanban CRUD module */ export declare class Crud { private parent; /** * Constructor for CRUD module * * @param {Kanban} parent Accepts the kanban instance * @private */ constructor(parent: Kanban); addCard(cardData: Record | Record[], index?: number): void; private getIndexFromData; updateCard(cardData: Record | Record[], index?: number, isDropped?: boolean, dataDropIndexKeyFieldValue?: string, draggedKey?: string, droppedKey?: string, isMultipleDrag?: boolean): void; deleteCard(cardData: string | number | Record | Record[]): void; private priorityOrder; }