import { UseQueryOptions } from '@tanstack/react-query'; import type { TypesLabelValue } from '../schemas/TypesLabelValue'; import type { UsererrorError } from '../schemas/UsererrorError'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListSpaceLabelValuesQueryPathParams { space_ref: string; key: string; } export type ListSpaceLabelValuesOkResponse = ResponseWithPagination; export type ListSpaceLabelValuesErrorResponse = UsererrorError; export interface ListSpaceLabelValuesProps extends ListSpaceLabelValuesQueryPathParams, Omit, 'url'> { } export declare function listSpaceLabelValues(props: ListSpaceLabelValuesProps): Promise; export declare function useListSpaceLabelValuesQuery(props: ListSpaceLabelValuesProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;