import React from 'react'; export interface MingoAiButtonProps extends React.ButtonHTMLAttributes { source?: string; /** The platform's Mingo identity glyph — pass the SAME server-configured * icon the chat panel renders (host-side: `EntityIcon` fed by the admin * `assistantIcon`), so the launcher and the panel can never diverge. * Falls back to the packaged Mingo mark when the server has none. */ icon?: React.ReactNode; /** The launcher's wordmark + aria-label — pass the server-configured * assistant name (same `assistantName` the chat panel shows) so the * launcher never hardcodes an identity the admin has renamed. */ label?: string; } export declare function MingoAiButton({ source, icon, label, className, onClick, ...props }: MingoAiButtonProps): React.JSX.Element; export default MingoAiButton; //# sourceMappingURL=mingo-ai-button.d.ts.map