#!/usr/bin/env node
import { ParseOptions } from 'commander';
export declare function main(processArgv: string[], processArgvParseOptions?: ParseOptions): Promise<void>;
/**
 * Extracts multiple `--plugin <name>` options from `argv`
 * and returns both the filtered `argv` and the extracted plugins list.
 */
export declare function extractArgvPluginOptions(argv: string[]): {
    argv: string[];
    plugins?: undefined;
} | {
    argv: string[];
    plugins: string[];
};
//# sourceMappingURL=bin.d.ts.map