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 DeleteSpaceLabelMutationPathParams { space_ref: string; key: string; } export type DeleteSpaceLabelOkResponse = ResponseWithPagination; export type DeleteSpaceLabelErrorResponse = UsererrorError; export interface DeleteSpaceLabelProps extends DeleteSpaceLabelMutationPathParams, Omit, 'url'> { } export declare function deleteSpaceLabel(props: DeleteSpaceLabelProps): Promise; export declare function useDeleteSpaceLabelMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;