/**
 * 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 };
