import { IResponse } from './interfaces';
export default class RejectResponse implements IResponse<Error> {
    data: Error;
    error: boolean;
    headers: {
        date: string;
        'content-type': string;
        'content-length': string;
    };
    constructor(error?: Error);
}
