import { Command } from 'commander'; import { ProxyUrl } from '../../lib/types.js'; export interface PrepareCommandOptions { outputZip: string; /** When false, skip clicking any Continue button in browser mode */ continue?: boolean; /** CSS selector for a continue/agree button to click automatically */ continueButton?: string; useBrowser?: boolean; headless?: boolean; browserFlowTemplate?: string; browserFlowParameters?: string; browserFlowFile?: string; ignoreCaptcha?: boolean; proxy?: ProxyUrl; multiRequestFlowFile?: string; inputCsv?: string; } export declare function registerPrepareCommand(program: Command): void; export declare function handlePrepare(inputZip: string | undefined, options: PrepareCommandOptions): Promise; //# sourceMappingURL=index.d.ts.map