export interface AuthPrams { url: string; login: string; password: string; } interface Props { authParams: AuthPrams; onLoginHandler: Function; } declare const LoginScreen: (props: Props) => JSX.Element; export default LoginScreen;