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