import { Handler } from 'aws-lambda';
import { AppModuleOptions } from './interfaces';
/**
 * Create Lambda handler
 *
 * Node.js 24 compatibility:
 * - Handler signature is (event, context) only
 * - callback parameter is not used (not supported in Node.js 24)
 *
 * @see https://docs.aws.amazon.com/lambda/latest/dg/nodejs-handler.html
 */
export declare function createHandler(opts: AppModuleOptions): Handler;
