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