import { UseMutationOptions } from '@tanstack/react-query'; import type { RegistriesStatsResponseV3Response } from '../responses/RegistriesStatsResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { RegistriesStatsRequestV3RequestBody } from '../requestBodies/RegistriesStatsRequestV3RequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetRegistriesStatsV3MutationQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; } export type GetRegistriesStatsV3RequestBody = RegistriesStatsRequestV3RequestBody; export type GetRegistriesStatsV3OkResponse = ResponseWithPagination; export type GetRegistriesStatsV3ErrorResponse = ErrorV3; export interface GetRegistriesStatsV3Props extends Omit, 'url'> { queryParams: GetRegistriesStatsV3MutationQueryParams; body: GetRegistriesStatsV3RequestBody; } export declare function getRegistriesStatsV3(props: GetRegistriesStatsV3Props): Promise; /** * Get statistics (packageCount, size, downloadCount, artifactsCount) for a list of registries by their UUIDs. */ export declare function useGetRegistriesStatsV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;