import type { FC } from 'react'; import type { LayoutProps } from './layout'; import type { LoginProps } from './login'; import type { IUserLogin } from './types'; export interface UserLoginProps extends Omit, Pick { /** * 登录方法 */ onLoginSubmit?: IUserLogin.LoginSubmit; } export declare const UserLogin: FC;