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