import { HandlerParameterDecorator } from './handler-parameter-decorator'; export declare class ServerlessScopedContext { private readonly map; constructor(); has(key: string): boolean; hasNot(key: string): boolean; get(key: string): any; set(key: string, value: unknown): void; delete(key: string): void; clear(): void; } export declare type ScopedContext = ServerlessScopedContext; export declare function ScopedContext(): HandlerParameterDecorator;