import { APIGatewayEvent, Context } from 'aws-lambda'; import { ExtendedAPIGatewayEvent } from '../../config/http/extended-api-gateway-event.js'; import { EpsilonRouter } from '../../http/route/epsilon-router.js'; export declare class BuiltInHandlers { static expectedHandledByFilter(evt: ExtendedAPIGatewayEvent, _flag?: string): Promise; static handleNotImplemented(evt: ExtendedAPIGatewayEvent, _flag?: string): Promise; static sample(evt: ExtendedAPIGatewayEvent, flag?: string, context?: Context): Promise; static defaultErrorProcessor(event: APIGatewayEvent, err: Error, cfg: EpsilonRouter): Promise; }