import { UseMutationOptions } from '@tanstack/react-query'; import type { EnvironmentResponseResponse } from '../responses/EnvironmentResponseResponse'; import type { EnvironmentCreateRequestRequestBody } from '../requestBodies/EnvironmentCreateRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface CreateAccountScopedEnvironmentMutationHeaderParams { 'Harness-Account'?: string; } export type CreateAccountScopedEnvironmentRequestBody = EnvironmentCreateRequestRequestBody; export type CreateAccountScopedEnvironmentOkResponse = ResponseWithPagination; export type CreateAccountScopedEnvironmentErrorResponse = unknown; export interface CreateAccountScopedEnvironmentProps extends Omit, 'url'> { body: CreateAccountScopedEnvironmentRequestBody; } export declare function createAccountScopedEnvironment(props: CreateAccountScopedEnvironmentProps): Promise; /** * Creates an account scoped Environment */ export declare function useCreateAccountScopedEnvironmentMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;