import type { MessageSection } from "./MessageSection.mjs";
/**
 * A string that is added to the error context.
 */
declare class StringSection implements MessageSection {
    readonly value: string;
    constructor(value: string);
    getMaxKeyLength(): number;
    getLines(): string[];
}
export { StringSection };
