import { FactoryType } from "locklift/internal/factory";
import { DeploymentHandler } from "./handler";
export declare const PLUGIN_NAME: "deployArtifacts";
export type DeployArtifactsExtension<T extends FactoryType> = {
    [key in typeof PLUGIN_NAME]: DeploymentHandler<T>;
};
