import { WriteDeployInfo } from "./types";
export declare class Logger {
    printDeployLog: (info: WriteDeployInfo) => void;
    printRetrievedLog: (info: {
        type: "Contract" | "Account";
        address: string;
        deploymentName: string;
    }) => void;
}
