import YAML from "yaml"; import { Checkpoints } from "../types"; export declare function loadCheckpoint(checkpointName: string): Checkpoints; export declare function toMap(obj: { [name: string]: T; }): Map; export declare function loadFromYamlFileSilent(filePath: string, options?: YAML.Options): any; export declare function persistCheckpoint(contractPath: string, checkpoint: Checkpoints): void;