import { MCPIdentity } from "./index";
import { MCPIdentityOptions } from "./types";
export interface NextJSMCPOptions extends Omit<MCPIdentityOptions, "transport" | "storage"> {
    storage?: "memory";
    transport?: "fetch";
    showSetupInstructions?: boolean;
}
export declare function enableMCPIdentityForNextJS(options?: NextJSMCPOptions): Promise<MCPIdentity>;
export { enableMCPIdentity, MCPIdentity } from "./index";
export * from "./types";
