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