import { ButtonHTMLAttributes, ReactNode } from "react"; interface Props extends ButtonHTMLAttributes { theme?: "primary" | "secondary" | "ghost"; size?: "thin" | "default"; icon?: ReactNode; loading?: boolean; } export default function Button({ size, theme, icon, loading, ...props }: Props): JSX.Element; export {};