import 'reflect-metadata'; import { type FrontMcpMetadata } from '../metadata'; /** * Read the @FrontMcp() decorator's parsed config off a class target. Returns * `undefined` when the input is not a decorated class — callers should treat * that as "no metadata available" and fall back to other sources. * * Used by the schema extractor and adapter validators to resolve the * server's http port, the cloudflare sqlite/redis check, and other * build-time decisions without reaching into Reflect directly. */ export declare function getDecoratorConfig(target: unknown): FrontMcpMetadata | undefined; /** * Decorator that marks a class as a FrontMcp Server and provides metadata */ export declare function FrontMcp(providedMetadata: FrontMcpMetadata): ClassDecorator; //# sourceMappingURL=front-mcp.decorator.d.ts.map