UNPKG

bismillahcss

Version:

The next-gen utility-first CSS framework for modern, futuristic web development.

61 lines (59 loc) 1.31 kB
/** * BismillahCSS Model Context Protocol (MCP) Interface * Providing component context and design documentation for AI agents. */ declare const bMCP: { version: string; tools: ({ name: string; description: string; parameters: { type: string; properties: { component: { type: string; }; path: { type: string; }; }; }; } | { name: string; description: string; parameters?: undefined; })[]; resources: { uri: string; name: string; mimeType: string; }[]; }; declare const registerMCP: () => { version: string; tools: ({ name: string; description: string; parameters: { type: string; properties: { component: { type: string; }; path: { type: string; }; }; }; } | { name: string; description: string; parameters?: undefined; })[]; resources: { uri: string; name: string; mimeType: string; }[]; }; export { bMCP, registerMCP };