/** * Client icons for AI code editors and CLIs * Using SVGs from simpleicons.org */ interface IconProps { className?: string; } /** * Renders the Visual Studio Code logo as an inline SVG. * * @param className - Optional CSS class applied to the root SVG element. * @returns The SVG element for the VS Code icon with `fill="currentColor"`. */ export declare function VSCodeIcon({ className }: IconProps): import("react/jsx-runtime").JSX.Element; /** * Renders the Model Context Protocol (MCP) logo. */ export declare function McpIcon({ className }: IconProps): import("react/jsx-runtime").JSX.Element; /** * Renders the OpenAI logo. */ export declare function OpenAIIcon({ className }: IconProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=client-icons.d.ts.map