import { IConfig } from './types'; import { ValidationType } from './checker/types'; declare class Config implements IConfig { debug: boolean; requests: boolean; verbose: boolean; stream: boolean; wappStorageSecret: boolean; validation: ValidationType; reconnectCount: number; ackTimeout: number; watchdogTimeout: number; jitterMin: number; jitterMax: number; } declare const _config: Config; export { _config }; /** * Configures the behavior of the library. * * @param param - The configuration parameters to set. * @return The updated configuration object. */ export declare function config(param: IConfig): IConfig;