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 GetVersionMetadataV3QueryPathParams { id: string; } export interface GetVersionMetadataV3QueryQueryParams { account_identifier: string; } export type GetVersionMetadataV3OkResponse = ResponseWithPagination; export type GetVersionMetadataV3ErrorResponse = ErrorV3; export interface GetVersionMetadataV3Props extends GetVersionMetadataV3QueryPathParams, Omit, 'url'> { queryParams: GetVersionMetadataV3QueryQueryParams; } export declare function getVersionMetadataV3(props: GetVersionMetadataV3Props): Promise; /** * Retrieves all metadata for a version. */ export declare function useGetVersionMetadataV3Query(props: GetVersionMetadataV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;