/** * Return the safest user-facing way to invoke this CLI. * * When the package is run through npm exec/npx, `workos ...` may resolve to an * older global binary in the user's shell. Recovery hints should keep using npx. */ export declare function getWorkOSCommand(env?: NodeJS.ProcessEnv): string; export declare function formatWorkOSCommand(args: string, env?: NodeJS.ProcessEnv): string; export declare function shellQuoteArg(arg: string): string; export declare function formatWorkOSCommandArgs(args: string[], env?: NodeJS.ProcessEnv): string;