import type { TextlintRuleErrorDetails } from "@textlint/types";
import { AnyTxtNode } from "@textlint/ast-node-types";
export declare class SourceLocation {
private source;
constructor(text: string);
toAbsoluteLocation(node: AnyTxtNode, padding: TextlintRuleErrorDetails): number;
}