import { AskResponse } from 'quidproquo-core'; import { RouteAuthSettings } from '../config/settings/route'; import { HTTPEvent } from '../types/HTTPEvent'; export interface ValidateRouteAuthPayload { event: HTTPEvent; routeAuthSettings?: RouteAuthSettings; } export declare function askValidateRouteAuth({ event, routeAuthSettings }: ValidateRouteAuthPayload): AskResponse;