export declare function takeSnapshot(maker: any): Promise<{
    snapshotId: any;
    transactionCounts: number;
    currentBlock: number;
}>;
export declare function restoreSnapshot(snapshotData: any, maker: any): Promise<any>;
