/** * Type-safe property accessor for nested object properties with array notation * Handles nested property access like 'user[profile][email]' */ export declare function lookup(obj: Record | null | undefined, field: string): T | undefined;