import * as react_jsx_runtime from 'react/jsx-runtime';

type Size = 'small' | 'large';
type HelpwaveBadgeProps = {
    size?: Size;
    title?: string;
    className?: string;
};
/**
 * A Badge with the helpwave logo and the helpwave name
 */
declare const HelpwaveBadge: ({ size, title, className }: HelpwaveBadgeProps) => react_jsx_runtime.JSX.Element;

export { HelpwaveBadge, type HelpwaveBadgeProps };
