import { CommandArgument, CommandResult } from '../../utils/types.js'; import { BaseCLICommand } from './baseCommand.js'; /** * ServiceNow SDK information command that accepts SDK flags * Handles: * - -v/--version: Show SDK version * - -h/--help: Show SDK help (optionally for a specific command) */ export declare class SdkInfoCommand extends BaseCLICommand { name: string; description: string; arguments: CommandArgument[]; /** * Get command and working directory for ServiceNow SDK execution */ private getSdkCommand; execute(args: Record): Promise; /** * Format the output based on the flag used */ private formatOutput; } //# sourceMappingURL=sdkInfoCommand.d.ts.map