import { ReactNode } from "react"; type Props = { className?: string; disabled?: boolean; children: ReactNode; onClick: () => void; }; export default function SignInWithLogoButton({ className, disabled, onClick, children, }: Props): import("react/jsx-runtime").JSX.Element; export {};