import { IInstructionOptions } from "./IInstructionOptions.js";
/**
 * Provides options for the {@link PHPInstruction `PHPInstruction`} class.
 */
export interface IPHPInstructionOptions extends IInstructionOptions {
    /**
     * The name of the file to load the php-script from.
     */
    FileName: string;
    /**
     * The application to load the php-file from.
     */
    Application: string;
}
