import type { NativeSyntheticEvent, StyleProp, ViewStyle } from 'react-native'; /** * @ignore */ export interface NativeProps { companyName: string; style?: StyleProp; formStyle: Styles; onCompleteAction(value: NativeSyntheticEvent): void; } export interface FormDetails { accountNumber: string; bsbNumber: string; email: string; name: string; } export interface Styles { borderWidth?: number; backgroundColor?: string; borderColor?: string; borderRadius?: number; textColor?: string; fontSize?: number; placeholderColor?: string; textErrorColor?: string; }