import { type IKeyValue, DBClient, type ClientOptions, type Namespace } from '../index'; export declare function getOptions(defaults?: any): ClientOptions; export declare function getHost(): string; export declare const expectReject: (promise: Promise, err: any) => Promise; export declare function createTestClient(): Promise; export declare function createTestClientAndKeys(): Promise; export declare function createTestKeys(client: DBClient | Namespace): Promise; export declare function tearDownTestClient(client?: DBClient): Promise; export declare const unmockedDelay: (duration: number) => Promise; export declare function containSubset(previous: string[] | Buffer[] | IKeyValue[], subset: any): boolean; export declare function deepEqual(x: any, y: any): boolean;