import type { CommandArgs } from '../wrapper';
import type { VerifyConfigOptions } from '../types';
export type JoinOptions = {
    apis: string[];
    'prefix-tags-with-info-prop'?: string;
    'prefix-tags-with-filename'?: boolean;
    'prefix-components-with-info-prop'?: string;
    'without-x-tag-groups'?: boolean;
    output?: string;
} & VerifyConfigOptions;
export declare function handleJoin({ argv, config, version: packageVersion, collectSpecData, }: CommandArgs<JoinOptions>): Promise<void>;
