import { UseQueryOptions } from '@tanstack/react-query'; import type { TypesLabelWithValues } from '../schemas/TypesLabelWithValues'; import type { UsererrorError } from '../schemas/UsererrorError'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface FindSpaceLabelQueryPathParams { space_ref: string; key: string; } export interface FindSpaceLabelQueryQueryParams { include_values?: boolean; } export type FindSpaceLabelOkResponse = ResponseWithPagination; export type FindSpaceLabelErrorResponse = UsererrorError; export interface FindSpaceLabelProps extends FindSpaceLabelQueryPathParams, Omit, 'url'> { queryParams: FindSpaceLabelQueryQueryParams; } export declare function findSpaceLabel(props: FindSpaceLabelProps): Promise; export declare function useFindSpaceLabelQuery(props: FindSpaceLabelProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;