import { UseQueryOptions } from '@tanstack/react-query'; import type { ConanPackagesResponseV3Response } from '../responses/ConanPackagesResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface ListConanPackagesV3QueryPathParams { id: string; recipe_revision_id: string; } export interface ListConanPackagesV3QueryQueryParams { account_identifier: string; /** * @format int64 * @default 0 */ page?: number; /** * @format int64 * @default 20 */ size?: number; } export type ListConanPackagesV3OkResponse = ResponseWithPagination; export type ListConanPackagesV3ErrorResponse = ErrorV3; export interface ListConanPackagesV3Props extends ListConanPackagesV3QueryPathParams, Omit, 'url'> { queryParams: ListConanPackagesV3QueryQueryParams; } export declare function listConanPackagesV3(props: ListConanPackagesV3Props): Promise; /** * List the packages (PKGIDs) under a Conan recipe revision. */ export declare function useListConanPackagesV3Query(props: ListConanPackagesV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;