import { Client, Config } from './client'; export { Type as RequestType } from './request/Type'; /** * Initializes the SDK. * @param config SDK configuration options. * @returns Client instance, which could be used further * for sending requests to the server. */ export declare function init(config: Config): Client;