import { type ContractRunner } from "ethers";
import type { EnvReader, EnvReaderInterface } from "../EnvReader";
export declare class EnvReader__factory {
    static readonly abi: readonly [{
        readonly type: "function";
        readonly name: "IS_SCRIPT";
        readonly inputs: readonly [];
        readonly outputs: readonly [{
            readonly name: "";
            readonly type: "bool";
            readonly internalType: "bool";
        }];
        readonly stateMutability: "view";
    }];
    static createInterface(): EnvReaderInterface;
    static connect(address: string, runner?: ContractRunner | null): EnvReader;
}
