export default UrlInput; declare function UrlInput({ style, value, onChange, readOnly, onScanPress, onSelection, onEndFocus, scanIconColor, showRequiredFields, hidden, }: { style: any; value: any; onChange: any; readOnly: any; onScanPress: any; onSelection?: () => void; onEndFocus?: () => void; scanIconColor: any; showRequiredFields?: boolean; hidden?: boolean; }): React.JSX.Element; import React from 'react';