import { KnownApiVersions } from "../models/models.js"; import type { Client, ClientOptions } from "@azure-rest/core-client"; import type { TokenCredential } from "@azure/core-auth"; export interface AIProjectContext extends Client { /** The API version to use for this operation. */ /** Known values of {@link KnownApiVersions} that the service accepts. */ apiVersion: KnownApiVersions; } /** Optional parameters for the client. */ export interface AIProjectClientOptionalParams extends ClientOptions { /** The API version to use for this operation. */ /** Known values of {@link KnownApiVersions} that the service accepts. */ apiVersion?: KnownApiVersions; } export declare function createAIProject(endpoint: string, credential: TokenCredential, options?: AIProjectClientOptionalParams): AIProjectContext; //# sourceMappingURL=aiProjectContext.d.ts.map