import { UseMutationOptions } from '@tanstack/react-query'; import type { TypesLabelValue } from '../schemas/TypesLabelValue'; import type { UsererrorError } from '../schemas/UsererrorError'; import type { EnumLabelColor } from '../schemas/EnumLabelColor'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface UpdateSpaceLabelValueMutationPathParams { space_ref: string; key: string; value: string; } export type UpdateSpaceLabelValueRequestBody = { color?: EnumLabelColor; value?: string; }; export type UpdateSpaceLabelValueOkResponse = ResponseWithPagination; export type UpdateSpaceLabelValueErrorResponse = UsererrorError; export interface UpdateSpaceLabelValueProps extends UpdateSpaceLabelValueMutationPathParams, Omit, 'url'> { body: UpdateSpaceLabelValueRequestBody; } export declare function updateSpaceLabelValue(props: UpdateSpaceLabelValueProps): Promise; export declare function useUpdateSpaceLabelValueMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;