import type { ChangeEventHandler, FocusEventHandler } from 'react' import type { FormControl } from '@baseapp-frontend/utils/types/form' type OptionalActions = { onChangeText?: (value: any) => void | ChangeEventHandler onBlur?: (value?: any) => void | FocusEventHandler } export type WithNativeControllerProps = FormControl & T & OptionalActions