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