export interface LensmcpIdentityContext { rendererId: string; page?: string; route?: string; /** Optional override — when set, hook helpers tag their events with * this component instance instead of falling back to a synthetic id. */ componentInstanceId?: string; /** Stable component logicalId (file + name), if known. */ componentLogicalId?: string; /** Optional parent render id (set by LensmcpRoot's Profiler onRender). */ lastRenderId?: string; } export declare const LensmcpContext: import("react").Context; export declare function useLensmcpContext(): LensmcpIdentityContext;