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