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