import { GatewayModelEnum } from './GatewayModelEnum';
import { CreateNetworkForGatewaySummary } from './CreateNetworkForGatewaySummary';
/** Input to create a gateway */
export interface CreateGateway {
    /** Model of the gateway */
    model: GatewayModelEnum;
    /** Name of the gateway */
    name: string;
    /** Information to create the network for the gateway */
    network: CreateNetworkForGatewaySummary;
}
//# sourceMappingURL=CreateGateway.d.ts.map