export declare class LocalId { static localId: number; static localConnectionId: number; static ReservedLocalId: number[]; static ReservedConnectionId: number[]; static AddConceptId(id: any): void; /** * * This function will get the local concept id from the indexdb * @returns the local concept id */ static getConceptId(): Promise; /** * * @param object This is the object that needs to be updated */ static AddConnectionId(object: any): void; static getConnectionId(): Promise; }