/** * * @param id * @param linker * @returns */ export declare function DeleteConnectionByType(id: number, linker: string): Promise; export declare function DeleteConnectionByTypeBulk(id: number, linkers: string[]): Promise; /** * This function returns all the connections from the ofTheConceptId and connection type * @param id ofTheConceptId * @param linker the connection type * @returns Array of connections */ export declare function GetAllTheConnectionsByTypeAndOfTheConcept(id: number, linker: string, reverse?: boolean): Promise; /** * * @param id * @param linker * @returns */ export declare function DeleteConnectionsByTypeLocal(id: number, linkerStrings: string[]): Promise;