/** * Encapsulates an http response from Facebook's Graph API. */ declare class APIResponse { _body: Record; _httpStatus: string; _headers: Record; _call: Record; _response: Record; constructor(response: Record, call?: Record); /** * @return {Object} The response body */ get body(): any; get headers(): any; get etag(): any; get status(): string; get isSuccess(): boolean; get error(): any; } export default APIResponse;