import { Backend } from './Backend';
import { Frontend } from './Frontend';
import { Networking } from './configuration/networking/Networking';
/** A load balancer configuration */
export interface Configuration {
    /** List of backends */
    backends: Backend[];
    /** List of certificate ID */
    certificates: string[];
    /** List of frontends */
    frontends: Frontend[];
    /** networking configuration */
    networking: Networking;
    /** Identifier and version of the configuration */
    version: number;
}
//# sourceMappingURL=Configuration.d.ts.map