import { Kuzzle } from 'kuzzle-sdk';
import { Backends, SDKOptions } from '../types';
/**
 * Instantiates the Kuzzle SDK by resolving the backend from the given config.
 *
 * @param backendsConfig
 * @param sdkOptions
 */
export declare function instantiateKuzzleSDK(backendsConfig?: Backends, sdkOptions?: SDKOptions): Kuzzle;
