import React from 'react'; import type { ObjectSchema } from 'yup'; import type { NavigationProp } from '@react-navigation/native'; import type { FieldConfig } from './EntityModel'; declare type AssocSingleInputProps = { field: FieldConfig; obj: any; validationSchema: ObjectSchema; parentRoute: string; navigation: NavigationProp; viewValue?: string; viewValueComponent?: React.ComponentType; }; declare const AssocSingleInput: React.FC; export default AssocSingleInput;