import { IThemeLoaderOptions } from "../../../../Customization/Presentation/Themes/IThemeLoaderOptions.js";
import { IInstructionOptions } from "../../IInstructionOptions.js";
/**
 * Provides options for the {@link ThemeInstruction `ThemeInstruction`} class.
 */
export interface IThemeInstructionOptions extends Partial<IInstructionOptions> {
    /**
     * The theme provided by the instruction.
     */
    Theme: IThemeLoaderOptions;
}
