import { UseMutationOptions } from '@tanstack/react-query'; import type { UsererrorError } from '../schemas/UsererrorError'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteSpaceLabelValueMutationPathParams { space_ref: string; key: string; value: string; } export type DeleteSpaceLabelValueOkResponse = ResponseWithPagination; export type DeleteSpaceLabelValueErrorResponse = UsererrorError; export interface DeleteSpaceLabelValueProps extends DeleteSpaceLabelValueMutationPathParams, Omit, 'url'> { } export declare function deleteSpaceLabelValue(props: DeleteSpaceLabelValueProps): Promise; export declare function useDeleteSpaceLabelValueMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;