import * as React from "react"; import { TouchableHighlightProps as RNButtonProps } from "react-native"; interface TextInputProps extends RNButtonProps { m?: any; p?: any; center?: boolean; value: any; onSelect?: (value: any) => void; children?: React.ReactElement[] | React.ReactElement; } declare type Ref = {}; declare const Option: React.ForwardRefExoticComponent>; export { Option };