import { SDKOptions } from "../../../lib/config.js"; import { LocalContext } from "../../cli.js"; import { ConsoleLoggerLevel } from "../../console-logger.js"; import { MCPScope } from "../../scopes.js"; interface StartCommandFlags { readonly transport: "stdio" | "sse"; readonly port: number; readonly tool?: string[]; readonly scope?: MCPScope[]; readonly "server-url": string; readonly "server-index"?: SDKOptions["serverIdx"]; readonly "log-level": ConsoleLoggerLevel; readonly env?: [string, string][]; } export declare function main(this: LocalContext, flags: StartCommandFlags): Promise; export {}; //# sourceMappingURL=impl.d.ts.map