import type { APIGatewayProxyResult, Context as LambdaContext, DynamoDBStreamEvent } from "@webiny/aws-sdk/types/index.js"; import type { HandlerFactoryParams } from "../types.js"; export * from "./plugins/DynamoDBEventHandler.js"; export type HandlerParams = HandlerFactoryParams; export interface HandlerCallable { (event: DynamoDBStreamEvent, context: LambdaContext): Promise; } export declare const createHandler: (params: HandlerParams) => HandlerCallable;