export declare const API_ERROR = "BROKER_ERROR";
export declare const API_NO_RESPONSE = "BROKER_NO_RESPONSE";
export declare const API_NOT_AUTHORISED = "BROKER_NOT_AUTHORISED";
export declare class BrokerError extends Error {
    code: string;
    constructor(message?: string, code?: string);
}
