import { UseMutationOptions } from '@tanstack/react-query'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteRegistryV3MutationPathParams { id: string; } export interface DeleteRegistryV3MutationQueryParams { account_identifier: string; force?: boolean; } export type DeleteRegistryV3OkResponse = ResponseWithPagination; export type DeleteRegistryV3ErrorResponse = ErrorV3; export interface DeleteRegistryV3Props extends DeleteRegistryV3MutationPathParams, Omit, 'url'> { queryParams: DeleteRegistryV3MutationQueryParams; } export declare function deleteRegistryV3(props: DeleteRegistryV3Props): Promise; /** * Delete a registry (soft or hard delete based on deleteType parameter) */ export declare function useDeleteRegistryV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;