import { UseMutationOptions } from '@tanstack/react-query'; import type { DeployableResponseResponse } from '../responses/DeployableResponseResponse'; import type { DeployableUpdateRequestRequestBody } from '../requestBodies/DeployableUpdateRequestRequestBody'; import type { GetPathParamsType, ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface UpdateAllScopeDeployableAccountPathParams { deployable: string; } export interface UpdateAllScopeDeployableAccountHeaderParams { 'Harness-Account'?: string; } export type UpdateAllScopeDeployableAccountRequestBody = DeployableUpdateRequestRequestBody; export type UpdateAllScopeDeployableAccountOKResponse = DeployableResponseResponse; export type UpdateAllScopeDeployableAccountErrorResponse = unknown; export interface UpdateAllScopeDeployableOrgPathParams { org: string; deployable: string; } export interface UpdateAllScopeDeployableOrgHeaderParams { 'Harness-Account'?: string; } export type UpdateAllScopeDeployableOrgRequestBody = DeployableUpdateRequestRequestBody; export type UpdateAllScopeDeployableOrgOKResponse = DeployableResponseResponse; export type UpdateAllScopeDeployableOrgErrorResponse = unknown; export interface UpdateAllScopeDeployableProjectPathParams { org: string; project: string; deployable: string; } export interface UpdateAllScopeDeployableProjectHeaderParams { 'Harness-Account'?: string; } export type UpdateAllScopeDeployableProjectRequestBody = DeployableUpdateRequestRequestBody; export type UpdateAllScopeDeployableProjectOKResponse = DeployableResponseResponse; export type UpdateAllScopeDeployableProjectErrorResponse = unknown; export type UpdateAllScopeDeployableOKResponse = T extends UpdateAllScopeDeployableProjectPathParams ? ResponseWithPagination : T extends UpdateAllScopeDeployableOrgPathParams ? ResponseWithPagination : ResponseWithPagination; export type UpdateAllScopeDeployableErrorResponse = T extends UpdateAllScopeDeployableProjectPathParams ? UpdateAllScopeDeployableProjectErrorResponse : T extends UpdateAllScopeDeployableOrgPathParams ? UpdateAllScopeDeployableOrgErrorResponse : UpdateAllScopeDeployableAccountErrorResponse; export interface UpdateAllScopeDeployableProps extends Omit, 'url'> { pathParams: UpdateAllScopeDeployableAccountPathParams | UpdateAllScopeDeployableOrgPathParams | UpdateAllScopeDeployableProjectPathParams; } export declare function updateAllScopeDeployable(props: T): Promise>>; export declare function useUpdateAllScopeDeployableMutation(options?: Omit, UpdateAllScopeDeployableErrorResponse, UpdateAllScopeDeployableProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult, unknown, UpdateAllScopeDeployableProps, unknown>;