import { QueryBuilder, QueryOptions, WhereClause } from './interfaces/query'; import { ListResult, Result } from './interfaces/types'; import { StorageApi } from './storage-api'; export declare class KvsQueryBuilder implements QueryBuilder { private storageApi; private options; constructor(storageApi: StorageApi, options?: QueryOptions); where(property: 'key', condition: WhereClause): this; cursor(cursor: string): this; limit(limit: number): this; getOne(): Promise | undefined>; getMany(): Promise>; } //# sourceMappingURL=query.d.ts.map