import { AxiosInstance } from "axios"; import { Integration } from "../types"; export declare class GroundcoverProvider { private storage; private httpClient; constructor(storage: any, httpClient?: AxiosInstance); resolve(conn: Integration): Promise; validate(conn: Integration): Promise; }