/** * DI tokens for FrontMCP `@Provider` registrations. Each token is paired * with a TypeScript interface declared by the package that owns it, so * consumers can type the `this.get(Token)` call by importing the * companion type. We keep the *interfaces* abstract in this package and * let `@lensmcp/core` etc. ship their concrete classes. */ export declare const SessionToken: unique symbol; export declare const EventBusToken: unique symbol; export declare const GraphStoreToken: unique symbol; export declare const ResourceStoreToken: unique symbol; export declare const StorageToken: unique symbol; export type LensmcpToken = typeof SessionToken | typeof EventBusToken | typeof GraphStoreToken | typeof ResourceStoreToken | typeof StorageToken;