export interface Deployment {
    MultiSigSmartAccountFactory?: string;
}
export type Deployments = Record<string, Deployment>;
export declare class DeploymentManager {
    readonly deploymentFilePath: string;
    private deploymentDraft;
    constructor(deploymentFilePath: string);
    read: () => Promise<Deployments>;
    write: (chainId: string | number, deployment: Deployment) => Promise<void>;
}
export declare const deploymentManager: DeploymentManager;
