import { UseMutationOptions } from '@tanstack/react-query'; import type { ServiceResponseResponse } from '../responses/ServiceResponseResponse'; import type { ServiceCreateRequestRequestBody } from '../requestBodies/ServiceCreateRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface CreateAccountScopedServiceMutationHeaderParams { 'Harness-Account'?: string; } export type CreateAccountScopedServiceRequestBody = ServiceCreateRequestRequestBody; export type CreateAccountScopedServiceOkResponse = ResponseWithPagination; export type CreateAccountScopedServiceErrorResponse = unknown; export interface CreateAccountScopedServiceProps extends Omit, 'url'> { body: CreateAccountScopedServiceRequestBody; } export declare function createAccountScopedService(props: CreateAccountScopedServiceProps): Promise; /** * Creates a service */ export declare function useCreateAccountScopedServiceMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;