declare class DomainError extends Error {
    info: any;
    constructor(message: any, info?: any);
}
declare class UNAUTHORIZED extends DomainError {
}
declare class ALREADY_CREATED extends DomainError {
}
declare class SERVER_ERROR extends DomainError {
}
declare class INTEGRATION_ERROR extends DomainError {
}
declare class VALIDATION_ERROR extends DomainError {
}
declare const _default: {
    ALREADY_CREATED: typeof ALREADY_CREATED;
    SERVER_ERROR: typeof SERVER_ERROR;
    UNAUTHORIZED: typeof UNAUTHORIZED;
    VALIDATION_ERROR: typeof VALIDATION_ERROR;
    INTEGRATION_ERROR: typeof INTEGRATION_ERROR;
    fromAxios: (error: any) => never;
};
export default _default;
