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