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