import { ITezosOperationStatusOutput } from "./interfaces/tezos";
import { Waas } from "./waas";
import { IWaasMethod } from "./waas-method";
export declare class TezosOperation implements IWaasMethod {
    waas: Waas;
    private readonly _hash;
    get hash(): string;
    constructor(waas: Waas, _hash: string);
    /**
     * Requests details for given operation hash
     */
    get(): Promise<ITezosOperationStatusOutput>;
}
