import { type ButtonHTMLAttributes, type ReactNode, type Ref } from 'react'; type GlobeButtonProps = Omit, 'children'> & { backgroundColor?: string; borderColor?: string; children?: ReactNode; hoverBackgroundColor?: string; iconSize?: number | string; inkColor?: string; ref?: Ref; }; declare const GlobeButton: ({ backgroundColor, borderColor, children, className, disabled, hoverBackgroundColor, iconSize, inkColor, onBlur, onFocus, onMouseEnter, onMouseLeave, style, type, ref, ...props }: GlobeButtonProps) => import("react/jsx-runtime").JSX.Element; export { GlobeButton, type GlobeButtonProps };