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 DefineSpaceLabelValueMutationPathParams { space_ref: string; key: string; } export type DefineSpaceLabelValueRequestBody = { color?: EnumLabelColor; value?: string; }; export type DefineSpaceLabelValueOkResponse = ResponseWithPagination; export type DefineSpaceLabelValueErrorResponse = UsererrorError; export interface DefineSpaceLabelValueProps extends DefineSpaceLabelValueMutationPathParams, Omit, 'url'> { body: DefineSpaceLabelValueRequestBody; } export declare function defineSpaceLabelValue(props: DefineSpaceLabelValueProps): Promise; export declare function useDefineSpaceLabelValueMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;