import { Reporters } from '@wdio/types'; import { Tag } from '@wdio/reporter/build/types'; import { Attribute, ClientConfig, LaunchObj, Suite } from './models'; export declare const promiseErrorHandler: (promise: Promise) => void; export declare const getClientConfig: (options: Partial) => ClientConfig; export declare const getAgentInfo: () => { version: string; name: string; framework_version?: string; }; export declare const getSystemAttributes: () => Attribute[]; export declare const getStartLaunchObj: (config: Partial, launchObj?: LaunchObj) => LaunchObj; export declare const getCodeRef: (filePath: string, title: string, ancestors: Suite[]) => string; export declare const parseTags: (tags: string[] | Tag[]) => Attribute[]; export declare const limit: (val: any) => any;