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 DeleteMetadataV3MutationPathParams { id: string; } export interface DeleteMetadataV3MutationQueryParams { account_identifier: string; } export type DeleteMetadataV3OkResponse = ResponseWithPagination; export type DeleteMetadataV3ErrorResponse = ErrorV3; export interface DeleteMetadataV3Props extends DeleteMetadataV3MutationPathParams, Omit, 'url'> { queryParams: DeleteMetadataV3MutationQueryParams; } export declare function deleteMetadataV3(props: DeleteMetadataV3Props): Promise; /** * Delete metadata key-value pairs by ID of metadata * */ export declare function useDeleteMetadataV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;