export declare const STATS_ERRORS: {
    readonly UNKNOWN_ERROR: {
        readonly code: "A001";
        readonly message: "Unexpected error";
    };
    readonly GET_SYS_STATS_ERROR: (message: string) => {
        code: string;
        message: string;
    };
    readonly GET_ALL_USERS_STATS_ERROR: (message: string) => {
        code: string;
        message: string;
    };
    readonly GET_USER_STATS_ERROR: (message: string) => {
        code: string;
        message: string;
    };
    readonly GET_USER_ONLINE_STATUS_ERROR: (message: string) => {
        code: string;
        message: string;
    };
    readonly GET_ALL_INBOUNDS_STATS_ERROR: (message: string) => {
        code: string;
        message: string;
    };
    readonly GET_INBOUND_STATS_ERROR: (message: string) => {
        code: string;
        message: string;
    };
    readonly GET_ALL_OUTBOUNDS_STATS_ERROR: (message: string) => {
        code: string;
        message: string;
    };
    readonly GET_OUTBOUND_STATS_ERROR: (message: string) => {
        code: string;
        message: string;
    };
};
//# sourceMappingURL=stats.errors.d.ts.map