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 PostOrgScopedPrimaryManifestsMutationPathParams { service: string; org: string; } export interface PostOrgScopedPrimaryManifestsMutationHeaderParams { 'Harness-Account'?: string; } export type PostOrgScopedPrimaryManifestsRequestBody = GitEntityFindInfoRequestBodyRequestBody; export type PostOrgScopedPrimaryManifestsOkResponse = ResponseWithPagination; export type PostOrgScopedPrimaryManifestsErrorResponse = unknown; export interface PostOrgScopedPrimaryManifestsProps extends PostOrgScopedPrimaryManifestsMutationPathParams, Omit, 'url'> { body: PostOrgScopedPrimaryManifestsRequestBody; } export declare function postOrgScopedPrimaryManifests(props: PostOrgScopedPrimaryManifestsProps): Promise; /** * Returns a list of eligible primary manifests from all configured manifest in an org-scoped service. */ export declare function usePostOrgScopedPrimaryManifestsMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;