import { CommandArgument, CommandResult } from '../../utils/types.js'; import { SessionAwareCLICommand } from './sessionAwareCommand.js'; /** * Command to install a Fluent (ServiceNow SDK) application to a ServiceNow instance * Uses the session's working directory */ export declare class InstallCommand extends SessionAwareCLICommand { name: string; description: string; arguments: CommandArgument[]; execute(args: Record): Promise; } //# sourceMappingURL=installCommand.d.ts.map