import { UseMutationOptions } from '@tanstack/react-query'; import type { QuarantinePathResponseResponse } from '../responses/QuarantinePathResponseResponse'; import type { BadRequestResponse } from '../responses/BadRequestResponse'; import type { UnauthenticatedResponse } from '../responses/UnauthenticatedResponse'; import type { UnauthorizedResponse } from '../responses/UnauthorizedResponse'; import type { InternalServerErrorResponse } from '../responses/InternalServerErrorResponse'; import type { QuarantineRequestRequestBody } from '../requestBodies/QuarantineRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface QuarantineFilePathMutationPathParams { registry_ref: string; } export type QuarantineFilePathRequestBody = QuarantineRequestRequestBody; export type QuarantineFilePathOkResponse = ResponseWithPagination; export type QuarantineFilePathErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | InternalServerErrorResponse; export interface QuarantineFilePathProps extends QuarantineFilePathMutationPathParams, Omit, 'url'> { body: QuarantineFilePathRequestBody; } export declare function quarantineFilePath(props: QuarantineFilePathProps): Promise; /** * quarantine file path */ export declare function useQuarantineFilePathMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;