/** * * DTO representing a key-document ID pair used for cursor-based pagination in CouchDB views. * / */ export declare class PaginatedDocumentKeyIdPair { /** * * The view key to start the next page from. */ startKey: any | undefined; /** * * The document identifier to start the next page from, used to disambiguate when multiple * documents share the same key. */ startKeyDocId: string | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): PaginatedDocumentKeyIdPair; }