import { WoltLabXMLCompiler } from "../WoltLabXMLCompiler.js";
/**
 * Provides the functionality to compile localization-files.
 */
export declare class LocalizationFileCompiler extends WoltLabXMLCompiler<[string, Record<string, Record<string, string>>]> {
    /**
     * Initializes a new instance of the {@link LocalizationFileCompiler `LocalizationFileCompiler`} class.
     *
     * @param item
     * The item to compile.
     */
    constructor(item: [string, Record<string, Record<string, string>>]);
    /**
     * @inheritdoc
     */
    protected get TagName(): string;
    /**
     * @inheritdoc
     */
    protected get SchemaLocation(): string;
    /**
     * @inheritdoc
     *
     * @returns
     * The serialized document.
     */
    protected CreateDocument(): Document;
}
