export default class Context { constructor(data?: object | undefined); set(k: string, v: any): this; unset(k: string): this; setMultiple(values: object | undefined): this; get(k: string, defaultValue?: any | undefined): any; inc(k: string, offset?: number): this; dec(k: string, offset?: number): this; } //# sourceMappingURL=Context.d.ts.map