/** Pure builders for the daemon write/call subcommands and live-trace stdin cmds. */ export declare function buildWriteArgv(elf: string, writes: string[]): string[]; export declare function buildCallArgv(elf: string, func: string, args: number[], confirm: boolean, retType: string, timeout: number): string[]; export declare function writeStdinCmd(id: number, writes: string[]): string; export declare function callStdinCmd(id: number, func: string, args: number[], confirm: boolean, retType: string, timeout: number): string; export declare function parseResultFrame(line: string, id: number): { match: boolean; frame?: any; };