import type { Command } from "commander"; export declare const PASSWORD_OPTION_DESCRIPTION = "Open password. Batch: \"pwd1;pwd2\" per file in glob sort order; \"-\" = no password"; export declare const EDIT_PASSWORD_OPTION_DESCRIPTION = "Edit password. Batch: same semicolon rules as --password"; export declare const PASSWORD_BATCH_HELP = "\nPassword options:\n Glob patterns (e.g. *.pdf) expand to all matching files in that directory.\n Batch files are processed in a fixed order: full path, en collation\n (case-insensitive, numeric; same on all platforms). Password #N applies to file #N.\n\n Same password for every matched file:\n $ wpscli pdfdecrypt *.pdf --password 111111 -o ./output/\n One password per file (count must match the expanded file list):\n $ wpscli pdfsplit *.pdf --password 111111;222222 --pages 1 -o ./output/\n No password for a specific file (use \"-\"):\n $ wpscli pdfsplit *.pdf --password 111111;-;222222 --pages 1 -o ./output/\n"; export declare function addSharedOpts(cmd: Command, opts?: { noPassword?: boolean; multiOutput?: boolean; noForce?: boolean; }): Command;