import { PromptInfo } from './types.js';
export declare class PromptDetector {
    private static readonly PROMPT_PATTERNS;
    private static stripAnsiCodes;
    private static readonly CONTINUATION_PATTERNS;
    static detectPrompt(output: string, expectedType?: string, learnedPatterns?: string[], isCleanText?: boolean): PromptInfo;
    private static testLineForPrompt;
    static isErrorOutput(output: string, replType: string): boolean;
    static extractCommandOutput(fullOutput: string, command: string, replType: string): string;
    private static looksLikePrompt;
}
//# sourceMappingURL=prompt-detector.d.ts.map