import { UseMutationOptions } from '@tanstack/react-query'; import type { VersionsStatsResponseV3Response } from '../responses/VersionsStatsResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { VersionsStatsRequestV3RequestBody } from '../requestBodies/VersionsStatsRequestV3RequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetVersionsStatsV3MutationQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; } export type GetVersionsStatsV3RequestBody = VersionsStatsRequestV3RequestBody; export type GetVersionsStatsV3OkResponse = ResponseWithPagination; export type GetVersionsStatsV3ErrorResponse = ErrorV3; export interface GetVersionsStatsV3Props extends Omit, 'url'> { queryParams: GetVersionsStatsV3MutationQueryParams; body: GetVersionsStatsV3RequestBody; } export declare function getVersionsStatsV3(props: GetVersionsStatsV3Props): Promise; /** * Get statistics (deploymentMetadata, downloadCount, fileCount, scanStatus, scanID, size, artifactKey) for a list of versions by their UUIDs. */ export declare function useGetVersionsStatsV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;