/**
  Juju ProxyUpdater version 2.
  This facade is available on:
    Controller-machine-agent
    Machine-agent
    Unit-agent
    Models

  NOTE: This file was generated using the Juju schema
  from Juju 3.3 at the git SHA 65fa4c1ee5.
  Do not manually edit this file.
*/
import { ConnectionInfo, Transport } from "../../client.js";
import { Facade } from "../../types.js";
export interface Entities {
    entities: Entity[];
}
export interface Entity {
    tag: string;
}
export interface Error {
    code: string;
    info?: AdditionalProperties;
    message: string;
}
export interface NotifyWatchResult {
    NotifyWatcherId: string;
    error?: Error;
}
export interface NotifyWatchResults {
    results: NotifyWatchResult[];
}
export interface ProxyConfig {
    ftp: string;
    http: string;
    https: string;
    "no-proxy": string;
}
export interface ProxyConfigResult {
    "apt-mirror"?: string;
    "apt-proxy-settings"?: ProxyConfig;
    error?: Error;
    "juju-proxy-settings": ProxyConfig;
    "legacy-proxy-settings": ProxyConfig;
    "snap-proxy-settings"?: ProxyConfig;
    "snap-store-assertions"?: string;
    "snap-store-id"?: string;
    "snap-store-proxy-url"?: string;
}
export interface ProxyConfigResults {
    results: ProxyConfigResult[];
}
export interface AdditionalProperties {
    [key: string]: any;
}
/**
  API provides the ProxyUpdater version 2 facade.
*/
declare class ProxyUpdaterV2 implements Facade {
    static NAME: string;
    static VERSION: number;
    NAME: string;
    VERSION: number;
    _transport: Transport;
    _info: ConnectionInfo;
    constructor(transport: Transport, info: ConnectionInfo);
    /**
      ProxyConfig returns the proxy settings for the current model.
    */
    proxyConfig(params: Entities): Promise<ProxyConfigResults>;
    /**
      WatchForProxyConfigAndAPIHostPortChanges watches for changes to the proxy and api host port settings.
    */
    watchForProxyConfigAndAPIHostPortChanges(params: Entities): Promise<NotifyWatchResults>;
}
export default ProxyUpdaterV2;
