import { asp as g } from "@asp/asp"; import type { FC } from "react"; import { Text, TextInput, type TextInputProps, type TextProps, View, type ViewProps, } from "react-native"; const DEFAULT_HEIGHT = 50; export const Container: FC = ({ children, style, ...rest }) => { return ( {children} ); }; export const Header: FC = ({ children, style, ...rest }) => { return ( {children} ); }; export const FieldContainer: FC = ({ children, style, ...rest }) => { return ( {children} ); }; export const Field: FC }> = ({ style, ref, ...props }) => { return ( ); };