import { Err } from "./error";
import { Context } from "@larksuiteoapi/core";
export declare class Response<T> {
    private readonly context;
    code: number;
    msg: string;
    error: Err;
    data: T;
    [propName: string]: any;
    constructor(context: Context);
    getHeader(): {
        [key: string]: any;
    };
    getRequestID(): string;
    getHTTPStatusCode(): number;
    toString(): string;
}
//# sourceMappingURL=response.d.ts.map