import { TextMapLanguage } from '../types';
/**
 * Error thrown when the text map is not in the correct format
 */
export declare class TextMapFormatError extends Error {
    readonly name: string;
    /**
     * Create a TextMapFormatError
     * @param language Language of the text map
     */
    constructor(language: keyof typeof TextMapLanguage);
}
