import { OlaInterface } from './OlaInterface';
/** A structure describing OVH Link Aggregation available modes */
export interface OlaAvailableModes {
    /** Is it the default configuration of the server */
    default: boolean;
    /** Interface layout */
    interfaces: OlaInterface[];
    /** Mode name */
    name: string;
}
//# sourceMappingURL=OlaAvailableModes.d.ts.map