import * as React from "react"; import { PaperGroupProps } from "../Paper/PaperGroup"; interface Props extends Omit { onSubmit({ email, password, setSubmitError, }: { email: string; password: string; setSubmitError: (r: React.ReactNode) => void; }): Promise; } export default function SignInPage({ onSubmit, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export {};