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