export declare class Broker {
    private static instance;
    private sagas;
    private constructor();
    static getInstance(): Broker;
    get(cid: string): Function;
    add(cid: string, handle: Function): void;
    delete(cid: string): void;
}
