import { t as __name } from "./chunk--u3MIqq1.js"; import { OperationSchemas } from "@kubb/plugin-oas"; import { KubbFile } from "@kubb/fabric-core/types"; import { FabricReactNode } from "@kubb/react-fabric/types"; //#region src/components/Server.d.ts type Props = { serverName: string; serverVersion: string; paramsCasing?: 'camelcase'; operations: Array<{ tool: { name: string; title?: string; description: string; }; mcp: { name: string; file: KubbFile.File; }; zod: { name: string; file: KubbFile.File; schemas: OperationSchemas; }; type: { schemas: OperationSchemas; }; }>; }; declare function Server({ serverName, serverVersion, paramsCasing, operations }: Props): FabricReactNode; //#endregion export { Server }; //# sourceMappingURL=components.d.ts.map