interface ICommand { name: string | readonly string[]; description: string; callback(input: string): void; } export declare function registerCommand(command: ICommand): void; export declare function initializeStdin(): void; export {}; //# sourceMappingURL=stdin.d.ts.map