/** * This is production code, so be careful what you add to this file because we * want to keep it small. * * This file is used in compiled Presta functions to serialize output. */ import { Response as LambdaResponse } from 'lambda-types'; import { Response } from './core'; export declare function html(response: Partial): LambdaResponse; export declare function json(response: Omit, 'body'> & { body: Record; }): LambdaResponse; export declare function xml(response: Partial): LambdaResponse;