import ShortloopNodeFilter from "./filter/ShortloopNodeFilter"; declare class ShortloopAutoConfiguration { private readonly url; private readonly applicationName; private readonly authKey; private readonly environment; private nodeFilter; constructor(url: string, applicationName: string, authKey: string, envrionment: string); static isValidConfig(options: any): boolean; init(): boolean; getNodeFilter(): ShortloopNodeFilter | undefined; } export default ShortloopAutoConfiguration;