/** * * * DTO representing an entity identifier paired with its optional revision. Commonly used in * bulk operations and responses to identify stored documents. */ export declare class IdWithRev { /** * * The unique identifier of the entity. */ id: string; /** * * The revision of the entity, used for optimistic locking. */ rev: string | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): IdWithRev; }