import { DLTInterface, NotarizationResponse } from "../types";
export declare class Shimmer implements DLTInterface {
    private dlt;
    private nodeURL;
    private client;
    private explorerURL;
    private getNotarization;
    notarizeHash(hash: string, index?: string): Promise<NotarizationResponse>;
    getNotarizedTimestamp(hash: string, index?: string, proof?: any): Promise<Date>;
    getStatus(): Promise<any>;
}
