import { IAsyncHook } from './types';
export default class AsyncHook {
    /**
     * @desc subscribed hook object
     */
    taps: IAsyncHook[];
    /**
     * @desc hook execution function after serialization
     */
    funcs: IAsyncHook['fn'][];
    tap(options: IAsyncHook[]): void;
    tapCall(value: any): any;
    insert(options: IAsyncHook): void;
    create(): any;
    callTapsSeries(): string;
}
