export function transformArguments(mode?: 'NOSAVE' | 'SAVE'): Array { const args = ['SHUTDOWN']; if (mode) { args.push(mode); } return args; } export declare function transformReply(): void;