import { ApplicationFileSystemInstruction } from "../../../PackageSystem/Instructions/FileSystem/ApplicationFileSystemInstruction.js";
import { InstructionCompiler } from "./InstructionCompiler.js";
/**
 * Provides the functionality to compile a file-instruction.
 */
export declare class FileInstructionCompiler extends InstructionCompiler<ApplicationFileSystemInstruction> {
    /**
     * Initializes a new instance of the {@link FileInstructionCompiler `FileInstructionCompiler`} class.
     *
     * @param item
     * The item to compile.
     */
    constructor(item: ApplicationFileSystemInstruction);
    /**
     * @inheritdoc
     *
     * @returns
     * The serialized document.
     */
    Serialize(): Document;
    /**
     * @inheritdoc
     */
    protected Compile(): Promise<void>;
}
