import { UseQueryOptions } from '@tanstack/react-query'; import type { MetadataValuesResponseV3Response } from '../responses/MetadataValuesResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetMetadataValuesV3QueryQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; key: string; /** * @format int64 * @default 0 */ page?: number; /** * @format int64 * @default 20 */ size?: number; search_term?: string; } export type GetMetadataValuesV3OkResponse = ResponseWithPagination; export type GetMetadataValuesV3ErrorResponse = ErrorV3; export interface GetMetadataValuesV3Props extends Omit, 'url'> { queryParams: GetMetadataValuesV3QueryQueryParams; } export declare function getMetadataValuesV3(props: GetMetadataValuesV3Props): Promise; /** * Retrieve all possible values for a specific metadata key. */ export declare function useGetMetadataValuesV3Query(props: GetMetadataValuesV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;