import { BaseParser } from './types';
import { ParserResponse } from './types';
export declare class HtmlParser extends BaseParser {
    readonly id = "html";
    private readonly START_MARKER;
    private readonly END_MARKER;
    protected ALLOW_JS_IN_RESPONSE: boolean;
    constructor(options?: {
        allowJsInResponse?: boolean;
    });
    canParse(input: string, currentIndex: number): boolean;
    parse(input: string, currentIndex: number): ParserResponse;
}
//# sourceMappingURL=html-parser.d.ts.map