import type { AzureVMwareSolutionAPIContext } from "../../api/azureVMwareSolutionAPIContext.js"; import type { HostsGetOptionalParams, HostsListOptionalParams } from "../../api/hosts/options.js"; import type { Host } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a Hosts operations. */ export interface HostsOperations { /** Get a Host */ get: (resourceGroupName: string, privateCloudName: string, clusterName: string, hostId: string, options?: HostsGetOptionalParams) => Promise; /** List Host resources by Cluster */ list: (resourceGroupName: string, privateCloudName: string, clusterName: string, options?: HostsListOptionalParams) => PagedAsyncIterableIterator; } export declare function _getHostsOperations(context: AzureVMwareSolutionAPIContext): HostsOperations; //# sourceMappingURL=index.d.ts.map