/** * .what = transforms a plan command argv into the equivalent apply command * .why = shows users the exact command to run after plan, no syntax to remember */ export declare const asApplyCommandFromArgv: (input: { argv: string[]; planFilePath: string; }) => string;