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

type HelpwaveProps = SVGProps<SVGSVGElement> & {
    color?: string;
    animate?: 'none' | 'loading' | 'pulse' | 'bounce';
    size?: number;
};
/**
 * The helpwave loading spinner based on the svg logo.
 */
declare const Helpwave: ({ color, animate, size, ...props }: HelpwaveProps) => react_jsx_runtime.JSX.Element;

export { Helpwave, type HelpwaveProps };
