/**
 * Checks if the `manifests` command is provided and they are valid manifests files or a folder.
 */
export declare const parseIfMergeArgs: () => Promise<{
    manifests: string[];
    output: string | undefined;
    name: string | undefined;
    description: string | undefined;
}>;
