/** Generate and parse content entry IDs. */ export declare class EntryId { private _id; private _version; private constructor(); static create(): EntryId; static from(value: string): EntryId; toString(): string; get id(): string; get version(): number; incrementVersion(): EntryId; decrementVersion(): EntryId; setVersion(version: number): EntryId; }