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