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