import { EventContext } from './event-context'; import { Profile } from './profile'; export declare class DefaultEventContext implements EventContext { private _parsed; private _event; private _context; constructor(event: any, context: any); ensure(): { pathParameters: any; queryParameters: any; headers: any; body: any; }; getFromHeaders(name: string): string; getFromPath(name: string): string; getFromQuery(name: string): string | string[]; getFromAny(name: string): string | string[]; get body(): any; get profile(): Profile; }