export interface InputByteResult { value: string; echo: string; done: boolean; cancelled: boolean; } export declare function applyInputByte(current: string, byte: number): InputByteResult; export declare function promptHidden(prompt: string): Promise;