import { ThemeInstruction } from "../../../PackageSystem/Instructions/Customization/Presentation/ThemeInstruction.js";
import { InstructionCompiler } from "./InstructionCompiler.js";
/**
 * Provides the functionality to compile themes.
 */
export declare class ThemeInstructionCompiler extends InstructionCompiler<ThemeInstruction> {
    /**
     * Initializes a new instance of the {@link ThemeInstructionCompiler `ThemeInstructionCompiler`} class.
     *
     * @param item
     * The item to compile.
     */
    constructor(item: ThemeInstruction);
    /**
     * @inheritdoc
     */
    protected Compile(): Promise<void>;
}
