import type { OutputFormat } from '@redocly/openapi-core';
import type { CommandArgs } from '../wrapper';
import type { VerifyConfigOptions } from '../types';
export type StatsOptions = {
    api?: string;
    format: OutputFormat;
} & VerifyConfigOptions;
export declare function handleStats({ argv, config, collectSpecData }: CommandArgs<StatsOptions>): Promise<void>;
