/// import { AlphaOptions } from '../../types'; import querystring from 'querystring'; import { APIGatewayProxyEvent } from 'aws-lambda'; export declare const lambdaEvent: (config: AlphaOptions, relativeUrl?: string) => APIGatewayProxyEvent; /** * This mirrors the simple query stringify parser, except it creates an array of duplicate keys * instead of only using the first key and discarding all subsequent ones, which is how url.parse functioned until urlParse replaced it. * Need to support that array for receiving services to continue functioning correctly (such as multiple _tag keys for FHIR object queries) */ export declare const querystringWithArraySupport: (query: string) => querystring.ParsedUrlQuery;