import { IRequest } from './i-request.interface';
/**
 * A simple api gateway request that contains the minimal execution information and request headers.
 */
export interface IApiRequest extends IRequest {
    /**
     * Gets the request's headers.
     */
    readonly headers: {
        [key: string]: any;
    };
    /**
     * Gets the request's path parameters.
     */
    readonly pathParameters: {
        [key: string]: any;
    };
}
