import { handlerFunction } from './cliq-objects/common.js';
declare type IHandler = Record<string, Record<string, {
    fun: handlerFunction;
    res: unknown;
}>>;
export declare class Handler {
    static handler: IHandler;
    static registerHandler(handlerType: string, name: string, callback: handlerFunction, res: unknown): void;
}
export {};
