/** * Internal record stored inside the in-memory storage map. One per key. * See `THIRDPARTY-LICENSES.md` for upstream attribution. */ export declare class StorageRecord { value: number; expiresAt: number | null; timeoutId: ReturnType | null; constructor(value: number, expiresAt: number | null, timeoutId?: ReturnType | null); } //# sourceMappingURL=record.d.ts.map