//#region src/components/login/index.d.ts interface LoginProps { title: string; style: any; onLogin: (values: any, callback: (status: any) => void) => void; } declare const Login: (props: LoginProps) => JSX.Element; //#endregion export { Login, LoginProps };