import { HostStockProcGen } from './HostStockProcGen';
/** HostProfiles and their availability */
export interface HostStockProfile {
    /** Id of host profile */
    id: number;
    /** Name of host profile */
    name: string;
    /** Reference of host profile */
    ref: string;
    /** Available hosts */
    value: HostStockProcGen[];
}
//# sourceMappingURL=HostStockProfile.d.ts.map