export declare const AUTH_ERROR_CAUSE: {
    INVALID_CREDENTIALS: string;
    USER_NOT_VERIFIED: string;
    USER_NOT_FOUND: string;
    USER_ALREADY_EXISTS: string;
    USER_BLOCKED: string;
    USER_DELETED: string;
    NOT_ALLOWED: string;
};
export declare const AUTH_ERROR_MESSAGES: {
    LOGIN: {
        USER_NOT_FOUND: string;
        USER_DELETED: string;
        USER_BLOCKED: string;
        INVALID_CREDENTIALS: string;
        USER_NOT_VERIFIED: string;
    };
    REGISTER: {
        USER_ALREADY_EXISTS: string;
        NOT_ALLOWED: string;
    };
    CHANGE_PASSWORD: {
        PASSWORD_NOT_MATCHED: string;
    };
    RESET_PASSWORD: {
        EXPIRED_CODE: string;
        INVALID_TOKEN: string;
    };
    USER_ALREADY_EXISTS: string;
};
export declare const AUTH_SUCCESS_MESSAGES: {
    LOGIN: string;
    REGISTER: string;
    CHANGE_PASSWORD: string;
    FORGOT_PASSWORD: string;
    RESET_PASSWORD: string;
    ADD_BULK_USERS: string;
};
