import { UseMutationOptions } from '@tanstack/react-query'; import type { DeployableResponseResponse } from '../responses/DeployableResponseResponse'; import type { DeployableCreateRequestRequestBody } from '../requestBodies/DeployableCreateRequestRequestBody'; import type { GetPathParamsType, ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface CreateAllScopeDeployableAccountPathParams { } export interface CreateAllScopeDeployableAccountHeaderParams { 'Harness-Account'?: string; } export type CreateAllScopeDeployableAccountRequestBody = DeployableCreateRequestRequestBody; export type CreateAllScopeDeployableAccountOKResponse = DeployableResponseResponse; export type CreateAllScopeDeployableAccountErrorResponse = unknown; export interface CreateAllScopeDeployableOrgPathParams { org: string; } export interface CreateAllScopeDeployableOrgHeaderParams { 'Harness-Account'?: string; } export type CreateAllScopeDeployableOrgRequestBody = DeployableCreateRequestRequestBody; export type CreateAllScopeDeployableOrgOKResponse = DeployableResponseResponse; export type CreateAllScopeDeployableOrgErrorResponse = unknown; export interface CreateAllScopeDeployableProjectPathParams { org: string; project: string; } export interface CreateAllScopeDeployableProjectHeaderParams { 'Harness-Account'?: string; } export type CreateAllScopeDeployableProjectRequestBody = DeployableCreateRequestRequestBody; export type CreateAllScopeDeployableProjectOKResponse = DeployableResponseResponse; export type CreateAllScopeDeployableProjectErrorResponse = unknown; export type CreateAllScopeDeployableOKResponse = T extends CreateAllScopeDeployableProjectPathParams ? ResponseWithPagination : T extends CreateAllScopeDeployableOrgPathParams ? ResponseWithPagination : ResponseWithPagination; export type CreateAllScopeDeployableErrorResponse = T extends CreateAllScopeDeployableProjectPathParams ? CreateAllScopeDeployableProjectErrorResponse : T extends CreateAllScopeDeployableOrgPathParams ? CreateAllScopeDeployableOrgErrorResponse : CreateAllScopeDeployableAccountErrorResponse; export interface CreateAllScopeDeployableProps extends Omit, 'url'> { pathParams: CreateAllScopeDeployableAccountPathParams | CreateAllScopeDeployableOrgPathParams | CreateAllScopeDeployableProjectPathParams; } export declare function createAllScopeDeployable(props: T): Promise>>; export declare function useCreateAllScopeDeployableMutation(options?: Omit, CreateAllScopeDeployableErrorResponse, CreateAllScopeDeployableProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult, unknown, CreateAllScopeDeployableProps, unknown>;