import { GenericError } from 'agora-rte-sdk';
export declare class BusinessExceptions {
    static getReadableText(errCode?: string): string;
    static getErrorText(err: GenericError): {
        result: string;
        reason: any;
    };
    static getErrorTitle(err: GenericError): string;
}
