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