import { NetworkingTypeEnum } from './NetworkingTypeEnum';
import { MacAddress } from '../../MacAddress';
/** Interface or interfaces aggregation */
export interface Interfaces {
    /** Mac address of the LACP fallback interface */
    aggregationFallback?: MacAddress;
    /** Mac address or list of mac addresses */
    macs: MacAddress[];
    /** Network type */
    type: NetworkingTypeEnum;
}
//# sourceMappingURL=Interfaces.d.ts.map