export declare class KakapoResponse {
    code: number;
    body: any;
    headers: {
        [header: string]: string;
    };
    constructor(code?: number, body?: any, headers?: {
        [header: string]: string;
    });
    readonly error: boolean;
    readonly ok: boolean;
    static wrap(response: any): KakapoResponse;
}
