import { UseQueryOptions } from '@tanstack/react-query'; import type { MetadataKeysResponseV3Response } from '../responses/MetadataKeysResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetMetadataKeysV3QueryQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; /** * @format int64 * @default 0 */ page?: number; /** * @format int64 * @default 20 */ size?: number; search_term?: string; } export type GetMetadataKeysV3OkResponse = ResponseWithPagination; export type GetMetadataKeysV3ErrorResponse = ErrorV3; export interface GetMetadataKeysV3Props extends Omit, 'url'> { queryParams: GetMetadataKeysV3QueryQueryParams; } export declare function getMetadataKeysV3(props: GetMetadataKeysV3Props): Promise; /** * Retrieve a paginated list of all available metadata keys. */ export declare function useGetMetadataKeysV3Query(props: GetMetadataKeysV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;