import { default as React } from 'react'; export type ButtonVariants = 'primary' | 'secondary' | 'web3auth' | 'profileauth' | 'close'; export type ButtonProps = React.ButtonHTMLAttributes & { children: React.ReactNode; variant: ButtonVariants; startIcon?: React.ReactNode; endIcon?: React.ReactNode; }; export declare const Button: ({ children, className, variant, startIcon, endIcon, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;