import { Response } from 'express';
export declare class RESTError extends Error {
    code: number;
    info?: any;
    originalError?: any;
    constructor(code: number, message?: string, info?: any, originalError?: any);
    static send(res: Response, code: number, message?: string, info?: any): void;
}
