/// type Props = { children: React.ReactNode; disabled?: boolean; as?: "button" | "a"; className?: string; variant?: "primary" | "circle"; } & ({ as: "button"; onClick?: () => void; type?: "button" | "submit" | "reset"; } | { as: "a"; href: string; }); export declare const Button: ({ children, disabled, as: Component, className, variant, ...props }: Props) => import("react/jsx-runtime").JSX.Element; export {};