import { IAddress } from 'botbuilder'; export interface IConfig { /** * timeout in milliseconds before a BotTester runner will fail a test (when not overriden) */ timeout?: number; /** * default address bot will use for all communication (when not overriden) */ defaultAddress?: IAddress; } /** * default value for timeout. If config/options are set to this value, no timeout will be used */ export declare const NO_TIMEOUT = -1; export declare const config: IConfig;