import { UseMutationOptions } from '@tanstack/react-query'; import type { SuccessResponse } from '../responses/SuccessResponse'; 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 { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteQuarantineFilePathMutationPathParams { registry_ref: string; } export interface DeleteQuarantineFilePathMutationQueryParams { artifact?: string; version?: string; file_path?: string; artifact_type?: 'dataset' | 'model' | 'module' | 'provider'; filters?: string[]; } export type DeleteQuarantineFilePathOkResponse = ResponseWithPagination; export type DeleteQuarantineFilePathErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | InternalServerErrorResponse; export interface DeleteQuarantineFilePathProps extends DeleteQuarantineFilePathMutationPathParams, Omit, 'url'> { queryParams: DeleteQuarantineFilePathMutationQueryParams; } export declare function deleteQuarantineFilePath(props: DeleteQuarantineFilePathProps): Promise; /** * delete Quarantine file path */ export declare function useDeleteQuarantineFilePathMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;