import chalk from "chalk"; export declare function readInput(options: { prompt: string; silent?: boolean; timeout?: number; }): Promise; export declare class Reporter { stdout: NodeJS.WriteStream & { fd: 1; }; stderr: NodeJS.WriteStream & { fd: 2; }; format: typeof chalk; error(msg: string): void; log(msg: string): void; warn(msg: string): void; info(msg: string): void; /** * Write a status message to stderr for feedback during long-running operations. * Writing to stderr ensures it doesn't interfere with piped stdout. */ status(msg: string): void; }