import https from 'https';
export declare class HttpsAgentManager {
    private readonly trustedCert?;
    private readonly ignoreCertErrors?;
    private readonly url?;
    private httpsAgent?;
    constructor(trustedCert?: string | undefined, ignoreCertErrors?: boolean | undefined, url?: string | undefined);
    getAgent(): https.Agent | undefined;
}
