import { PrivateDeployer } from "./deployer";
import { FactoryType } from "locklift/internal/factory";
export declare const PLUGIN_NAME: "privateRPC";
export type PrivateDeployerExtension<T extends FactoryType> = {
    [key in typeof PLUGIN_NAME]: PrivateDeployer<T>;
};
export type LockliftConfigExtension = {
    privateRPC: string;
};
