import type { Handler } from 'aws-lambda'; import type { DestructuredHandler } from '../instance'; /** * Wraps a Lamware-compatible Handler with a stock AWS Lambda handler. */ export declare const wrapCompat: (handler: DestructuredHandler, create: (compatHandler: Handler) => Handler) => DestructuredHandler;