/**
  Juju RetryStrategy version 1.
  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 RetryStrategy {
    "jitter-retry-time": boolean;
    "max-retry-time": number;
    "min-retry-time": number;
    "retry-time-factor": number;
    "should-retry": boolean;
}
export interface RetryStrategyResult {
    error?: Error;
    result?: RetryStrategy;
}
export interface RetryStrategyResults {
    results: RetryStrategyResult[];
}
export interface AdditionalProperties {
    [key: string]: any;
}
/**
  RetryStrategyAPI implements RetryStrategy
*/
declare class RetryStrategyV1 implements Facade {
    static NAME: string;
    static VERSION: number;
    NAME: string;
    VERSION: number;
    _transport: Transport;
    _info: ConnectionInfo;
    constructor(transport: Transport, info: ConnectionInfo);
    /**
      RetryStrategy returns RetryStrategyResults that can be used by any code that uses
      to configure the retry timer that's currently in juju utils.
    */
    retryStrategy(params: Entities): Promise<RetryStrategyResults>;
    /**
      WatchRetryStrategy watches for changes to the model. Currently we only allow
      changes to the boolean that determines whether retries should be attempted or not.
    */
    watchRetryStrategy(params: Entities): Promise<NotifyWatchResults>;
}
export default RetryStrategyV1;
