import { ViewStyle, ImageStyle, TextStyle, StyleSheet, Dimensions, NativeScrollRectangle, } from "react-native"; const { width: ScreenWidth, height: ScreenHeight } = Dimensions.get("window"); interface Style { container: ViewStyle; headerContainer: ViewStyle; headerContainerGlue: ViewStyle; headerBackImageStyle: ImageStyle; signUpTextStyle: TextStyle; loginTitleContainer: ViewStyle; loginTextStyle: TextStyle; textFieldContainer: ViewStyle; passwordTextFieldContainer: ViewStyle; forgotPasswordContainer: ViewStyle; forgotPasswordTextStyle: TextStyle; socialLoginButtonContainer: ViewStyle; facebookImageStyle: ImageStyle; appleImageStyle: ImageStyle; socialLoginButtonImageStyle: ImageStyle; socialButtonsContainer: ViewStyle; socialButtonsContainerGlue: ViewStyle; socialLoginButtonsContentInset: NativeScrollRectangle; rightTopAssetContainer: ViewStyle; rightTopAssetImageStyle: ImageStyle; contentContainer: ViewStyle; leftBottomAssetContainer: ViewStyle; leftBottomAssetImageStyle: ImageStyle; } export default StyleSheet.create