/** * Throw this error to return a specific HTTP status code from an API Gateway Lambda function. */ declare class HttpStatusError extends Error { readonly statusCode: number; constructor(message: string, statusCode: number); } export { HttpStatusError };