import type { AIProjectContext } from "../../api/aiProjectContext.js"; import type { DeploymentsListOptionalParams, DeploymentsGetOptionalParams } from "../../api/deployments/options.js"; import type { DeploymentUnion } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "@azure/core-paging"; /** Interface representing a Deployments operations. */ export interface DeploymentsOperations { /** List all deployed models in the project */ list: (options?: DeploymentsListOptionalParams) => PagedAsyncIterableIterator; /** Get a deployed model. */ get: (name: string, options?: DeploymentsGetOptionalParams) => Promise; } export declare function _getDeploymentsOperations(context: AIProjectContext): DeploymentsOperations; //# sourceMappingURL=index.d.ts.map