import { IKNode } from './entities/knode.entity'; import { IDataServices } from '../common/abstracts'; export declare class KnodesService { private dataServices; constructor(dataServices: IDataServices); create(kNode: IKNode): Promise; findAll(): Promise; find(filter: Record): Promise; findOne(id: string): Promise; update(id: string, kNode: Partial): Promise; delete(id: string): Promise; }