import { ApplicationFileSystemInstruction } from "../../FileSystem/ApplicationFileSystemInstruction";
import { IApplicationFileSystemInstructionOptions } from "../../FileSystem/IApplicationFileSystemInstructionOptions";
/**
 * Represents an instruction which provides templates for the control panel.
 */
export declare class ACPTemplateInstruction extends ApplicationFileSystemInstruction {
    /**
     * Initializes a new instance of the `ACPTemplateInstruction` class.
     */
    constructor(options: IApplicationFileSystemInstructionOptions);
    /**
     * @inheritdoc
     */
    readonly Type: string;
    /**
     * @inheritdoc
     */
    MakeDefaultFileName(source: string): string;
}
