export function transformArguments(mode?: 'ASYNC' | 'SYNC'): Array { const args = ['SCRIPT', 'FLUSH']; if (mode) { args.push(mode); } return args; } export declare function transformReply(): string;