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