import "#nitro-internal-pollyfills"; import type { Handler } from "aws-lambda"; type StormkitEvent = { url: string; path: string; method: string; body?: string; query?: Record>; headers?: Record; rawHeaders?: Array; }; type StormkitResponse = { headers?: Record; body?: string; buffer?: string; statusCode: number; errorMessage?: string; errorStack?: string; }; export declare const handler: Handler; export {};