import type { ReplContext } from "./types.js"; export declare function banner(): void; export declare function prompt(): string; export declare function toolCallStart(name: string, args: Record): void; export declare function toolCallResult(result: string, isError?: boolean): void; export declare function streamingStart(): void; export declare function streamingText(text: string): void; export declare function streamingEnd(): void; export declare function diff(oldContent: string, newContent: string, filename: string): void; export declare function error(message: string): void; export declare function warn(message: string): void; export declare function info(message: string): void; export declare function success(message: string): void; export declare function status(context: ReplContext): void; export declare function help(commands: Array<{ name: string; description: string; }>): void; //# sourceMappingURL=display.d.ts.map