import { UseMutationOptions } from '@tanstack/react-query'; import type { ManifestsResponseDtoResponse } from '../responses/ManifestsResponseDtoResponse'; import type { GitEntityFindInfoRequestBodyRequestBody } from '../requestBodies/GitEntityFindInfoRequestBodyRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface PostAccountScopedPrimaryManifestsMutationPathParams { service: string; } export interface PostAccountScopedPrimaryManifestsMutationHeaderParams { 'Harness-Account'?: string; } export type PostAccountScopedPrimaryManifestsRequestBody = GitEntityFindInfoRequestBodyRequestBody; export type PostAccountScopedPrimaryManifestsOkResponse = ResponseWithPagination; export type PostAccountScopedPrimaryManifestsErrorResponse = unknown; export interface PostAccountScopedPrimaryManifestsProps extends PostAccountScopedPrimaryManifestsMutationPathParams, Omit, 'url'> { body: PostAccountScopedPrimaryManifestsRequestBody; } export declare function postAccountScopedPrimaryManifests(props: PostAccountScopedPrimaryManifestsProps): Promise; /** * Returns a list of eligible primary manifests from all configured manifest in an account-scoped service. */ export declare function usePostAccountScopedPrimaryManifestsMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;