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