type TargetCommandMap = { [key: string]: boolean | TargetCommandMap; }; export declare function isTargetedCommand(commandParts: (string | number)[], targetCommandMap: TargetCommandMap): boolean; export declare function shouldLoadConfigForCommand(commandParts: (string | number)[]): boolean; export declare function shouldRunConfigValidationForCommand(commandParts: (string | number)[]): boolean; export declare function shouldRunAccountValidationForCommand(commandParts: (string | number)[]): boolean; export {};