import { UseQueryOptions } from '@tanstack/react-query'; import type { ConanRecipeRevisionsResponseV3Response } from '../responses/ConanRecipeRevisionsResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListConanRecipeRevisionsV3QueryPathParams { id: string; } export interface ListConanRecipeRevisionsV3QueryQueryParams { account_identifier: string; /** * @format int64 * @default 0 */ page?: number; /** * @format int64 * @default 20 */ size?: number; } export type ListConanRecipeRevisionsV3OkResponse = ResponseWithPagination; export type ListConanRecipeRevisionsV3ErrorResponse = ErrorV3; export interface ListConanRecipeRevisionsV3Props extends ListConanRecipeRevisionsV3QueryPathParams, Omit, 'url'> { queryParams: ListConanRecipeRevisionsV3QueryQueryParams; } export declare function listConanRecipeRevisionsV3(props: ListConanRecipeRevisionsV3Props): Promise; /** * List finalized Conan recipe revisions for a version. */ export declare function useListConanRecipeRevisionsV3Query(props: ListConanRecipeRevisionsV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;