import { UseQueryOptions } from '@tanstack/react-query'; import type { MetadataResponseV3Response } from '../responses/MetadataResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetRegistryMetadataV3QueryPathParams { id: string; } export interface GetRegistryMetadataV3QueryQueryParams { account_identifier: string; } export type GetRegistryMetadataV3OkResponse = ResponseWithPagination; export type GetRegistryMetadataV3ErrorResponse = ErrorV3; export interface GetRegistryMetadataV3Props extends GetRegistryMetadataV3QueryPathParams, Omit, 'url'> { queryParams: GetRegistryMetadataV3QueryQueryParams; } export declare function getRegistryMetadataV3(props: GetRegistryMetadataV3Props): Promise; /** * Retrieves all metadata for a registry. */ export declare function useGetRegistryMetadataV3Query(props: GetRegistryMetadataV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;