import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { IconName } from '../Icon'; import type { BadgeProps } from '../Badge'; interface SearchSuffixIconProps { /** * Name of Icon or ReactElement to render on the right side of the input. */ suffix?: IconName | React.ReactElement; /** * Additional wrapper style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; /** * Badge props to be render on the suffix. */ badge?: Omit; } declare const SearchSuffixIcon: (props: SearchSuffixIconProps) => React.JSX.Element; export default SearchSuffixIcon;