export default abstract class Response { code: number; data: Record; meta: Record; /** * Indicates custom headers. */ protected headers: Record; constructor(code: number, data?: Record, meta?: Record); /** * Merge the given meta into the response meta. */ withMeta(meta: string | Record, value?: any): Response; /** * Get content for response. */ content(): Record; /** * Get response status code. */ getStatusCode(): number; /** * Get the response headers. */ getHeaders(): Record; /** * Append header value to response. */ withHeader(key: string, value: any): this; } //# sourceMappingURL=Response.d.ts.map