import { type ButtonHTMLAttributes, type Ref } from 'react'; export type FireflyButtonProps = ButtonHTMLAttributes & { backgroundColor?: string; coreColor?: string; cursorGlow?: boolean; glowColor?: string; ref?: Ref; textColor?: string; }; export declare const FireflyButton: ({ backgroundColor, children, className, coreColor, cursorGlow, glowColor, onPointerLeave, onPointerMove, ref, style, textColor, type, ...props }: FireflyButtonProps) => import("react/jsx-runtime").JSX.Element;