import { DialogProps } from '@material-ui/core/Dialog'; import { FunctionComponent } from 'react'; export interface SignInProps extends Omit { onClose?: () => void; } /** * Component managing user sign in. */ declare const SignIn: FunctionComponent; export default SignIn;