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