import { APIGatewayProxyResult } from "aws-lambda"; export interface APIGatewayResponse extends Omit { body: unknown | undefined; } export declare function badRequest(details: string | undefined): APIGatewayResponse; export declare function forbidden(details: string | undefined): APIGatewayResponse; export declare function unauthorized(details: string | undefined): APIGatewayResponse; export declare function internalServerError(): APIGatewayResponse; export declare function notFound(details: string | undefined): APIGatewayResponse; export declare function requestTimeout(details: string | undefined): APIGatewayResponse; export declare function ok(result: T): APIGatewayResponse; export declare function created(result: T): APIGatewayResponse; export declare function noContent(): APIGatewayResponse;