import { UseMutationOptions } from '@tanstack/react-query'; import type { InfrastructureResponseResponse } from '../responses/InfrastructureResponseResponse'; import type { InfrastructureCreateRequestRequestBody } from '../requestBodies/InfrastructureCreateRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface CreateAccountScopedInfrastructureMutationPathParams { environment: string; } export interface CreateAccountScopedInfrastructureMutationHeaderParams { 'Harness-Account'?: string; } export type CreateAccountScopedInfrastructureRequestBody = InfrastructureCreateRequestRequestBody; export type CreateAccountScopedInfrastructureOkResponse = ResponseWithPagination; export type CreateAccountScopedInfrastructureErrorResponse = unknown; export interface CreateAccountScopedInfrastructureProps extends CreateAccountScopedInfrastructureMutationPathParams, Omit, 'url'> { body: CreateAccountScopedInfrastructureRequestBody; } export declare function createAccountScopedInfrastructure(props: CreateAccountScopedInfrastructureProps): Promise; /** * Creates an account scoped Infrastructure */ export declare function useCreateAccountScopedInfrastructureMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;