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