declare class LaneContext { private values; readonly platform: string | null; readonly laneName: string; readonly env: Record; constructor(platform: string | null, laneName: string); get(key: string): T | undefined; set(key: string, value: unknown): void; has(key: string): boolean; toRecord(): Record; } export { LaneContext as L };