import { ACPCategory } from "../../Options/ControlPanel/ACPCategory";
import { ACPOption } from "../../Options/ControlPanel/ACPOption";
import { ACPOptionInstruction } from "../../PackageSystem/Instructions/Options/ACPOptionInstruction";
import { OptionFileCompiler } from "./OptionFileCompiler";
/**
 * Provides the functionality to compile acp-option files.
 */
export declare class ACPOptionFileCompiler extends OptionFileCompiler<ACPOptionInstruction, ACPCategory, ACPOption> {
    /**
     * Initializes a new instance of the `ACPOptionFileCompiler` class.
     *
     * @param item
     * The item to compile.
     */
    constructor(item: ACPOptionInstruction);
    /**
     * @inheritdoc
     */
    protected readonly SchemaLocation: string;
    /**
     * @inheritdoc
     */
    protected CreateOption(option: ACPOption): Element;
}
