interface ContinuationToken {
    nextPartitionKey: string;
    nextRowKey?: string;
}
/**
 * Encodes the nextPartitionKey and nextRowKey into a single continuation token
 */
export declare function encodeContinuationToken(nextPartitionKey?: string, nextRowKey?: string): string | undefined;
/**
 * Decodes a continuationToken into an object containing a nextPartitionKey and nextRowKey
 */
export declare function decodeContinuationToken(encodedToken: string): ContinuationToken;
export {};
//# sourceMappingURL=continuationToken.d.ts.map