import { ResponseProps, UpdateContext, GetContext } from './types'; export { createHandler }; declare function createHandler({ response, updateContext, getContext, }: ResponseProps & { updateContext: UpdateContext; getContext: GetContext; }): (req: TInput) => Promise<{ status: number; response: TResponse | undefined; headers: Record; }>;