/**
 * Checks if the `manifest` command is provided and it is valid manifest file.
 */
export declare const parseIfEnvArgs: () => Promise<{
    manifest: string;
    install: boolean | undefined;
    cwd: boolean | undefined;
} | {
    install: boolean | undefined;
    cwd: boolean | undefined;
    manifest?: undefined;
}>;
