import { Bandwidth } from './baremetalServer/Bandwidth';
import { Gpu } from './baremetalServer/Gpu';
import { Memory } from './baremetalServer/Memory';
import { Server } from './baremetalServer/Server';
import { Storage } from './baremetalServer/Storage';
import { Vrack } from './baremetalServer/Vrack';
/** Technical information on baremetal service */
export interface BaremetalServer {
    /** Technical information on server bandwidth */
    bandwidth?: Bandwidth;
    /** Technical information on server gpu */
    gpu?: Gpu;
    /** Technical information on server memory */
    memory?: Memory;
    /** Technical information on server type */
    server?: Server;
    /** Technical information on server storage */
    storage?: Storage;
    /** Technical information on server vrack */
    vrack?: Vrack;
}
//# sourceMappingURL=BaremetalServer.d.ts.map