import Text from './text.js';
import { RegexpResult, ContextArray, StateInterface, ParseMethodReturnType } from "../../../types.js";
declare class SpecializedText extends Text {
    blank(match: any, context: any[], nextState: any): any[];
    underline(match: any, context: any[], nextState: any): any[];
    indent(match: RegexpResult, context: ContextArray, nextState: StateInterface): ParseMethodReturnType;
    text(match: RegexpResult, context: ContextArray, nextState: StateInterface): ParseMethodReturnType;
    eof(...args: any): any[];
}
export default SpecializedText;
