import type { AIProjectContext as Client } from "../../index.js"; import type { SkillObject, _AgentsPagedResultSkillObject, DeleteSkillResponse, BetaSkillsDownloadResponse } from "../../../models/models.js"; import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { BetaSkillsDeleteOptionalParams, BetaSkillsUpdateOptionalParams, BetaSkillsListOptionalParams, BetaSkillsDownloadOptionalParams, BetaSkillsGetOptionalParams, CreateFromPackageOptionalParams, BetaSkillsCreateOptionalParams } from "./options.js"; import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; export declare function _$deleteSend(context: Client, skillName: string, options?: BetaSkillsDeleteOptionalParams): StreamableMethod; export declare function _$deleteDeserialize(result: PathUncheckedResponse): Promise; /** Deletes a skill. */ export declare function $delete(context: Client, skillName: string, options?: BetaSkillsDeleteOptionalParams): Promise; export declare function _updateSend(context: Client, skillName: string, options?: BetaSkillsUpdateOptionalParams): StreamableMethod; export declare function _updateDeserialize(result: PathUncheckedResponse): Promise; /** Updates an existing skill. */ export declare function update(context: Client, skillName: string, options?: BetaSkillsUpdateOptionalParams): Promise; export declare function _listSend(context: Client, options?: BetaSkillsListOptionalParams): StreamableMethod; export declare function _listDeserialize(result: PathUncheckedResponse): Promise<_AgentsPagedResultSkillObject>; /** Returns the list of all skills. */ export declare function list(context: Client, options?: BetaSkillsListOptionalParams): PagedAsyncIterableIterator; export declare function _downloadSend(context: Client, skillName: string, options?: BetaSkillsDownloadOptionalParams): StreamableMethod; export declare function _downloadDeserialize(result: PathUncheckedResponse & BetaSkillsDownloadResponse): Promise; /** Downloads a skill package. */ export declare function download(context: Client, skillName: string, options?: BetaSkillsDownloadOptionalParams): Promise; export declare function _getSend(context: Client, skillName: string, options?: BetaSkillsGetOptionalParams): StreamableMethod; export declare function _getDeserialize(result: PathUncheckedResponse): Promise; /** Retrieves a skill. */ export declare function get(context: Client, skillName: string, options?: BetaSkillsGetOptionalParams): Promise; export declare function _createFromPackageSend(context: Client, body: Uint8Array, options?: CreateFromPackageOptionalParams): StreamableMethod; export declare function _createFromPackageDeserialize(result: PathUncheckedResponse): Promise; /** Creates a skill from a zip package. */ export declare function createFromPackage(context: Client, body: Uint8Array, options?: CreateFromPackageOptionalParams): Promise; export declare function _createSend(context: Client, name: string, options?: BetaSkillsCreateOptionalParams): StreamableMethod; export declare function _createDeserialize(result: PathUncheckedResponse): Promise; /** Creates a skill. */ export declare function create(context: Client, name: string, options?: BetaSkillsCreateOptionalParams): Promise; //# sourceMappingURL=operations.d.ts.map