import { Interfaces } from './Interfaces';
import { NetworkingOperationEnum } from './NetworkingOperationEnum';
/** Network configuration */
export interface Networking {
    /** Operation description */
    description?: string;
    /** Interface or interfaces aggregation */
    interfaces: Interfaces[];
    /** Operation status */
    status?: NetworkingOperationEnum;
}
//# sourceMappingURL=Networking.d.ts.map