import { ApplicationFileSystemInstruction } from "../../FileSystem/ApplicationFileSystemInstruction.js";
import { IApplicationFileSystemInstructionOptions } from "../../FileSystem/IApplicationFileSystemInstructionOptions.js";
/**
 * Represents an instruction which provides templates for the control panel.
 */
export declare class ACPTemplateInstruction extends ApplicationFileSystemInstruction {
    /**
     * Initializes a new instance of the {@link ACPTemplateInstruction `ACPTemplateInstruction`} class.
     *
     * @param options
     * The options of the acp-template instruction.
     */
    constructor(options: IApplicationFileSystemInstructionOptions);
    /**
     * @inheritdoc
     */
    get Type(): string;
    /**
     * @inheritdoc
     */
    protected get AssetDirectoryName(): string;
}
