import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { IconName } from '../Icon'; interface SearchTwoLineProps { /** * Name of Icon or ReactElement to render on the left side of the input, before the user's cursor. */ prefix?: IconName | React.ReactElement; /** * Name of Icon or ReactElement to render on the right side of the input. */ suffix?: IconName | React.ReactElement; /** * Additional wrapper style. */ style?: StyleProp; /** * Label of the Input handler. */ label: React.ReactNode; /** * Content of the Input handler. */ content: React.ReactNode; /** * Testing id of the component. */ testID?: string; /** * Variant of the SearchTwo * @default 'basic' */ variant?: 'basic' | 'reversed'; /** * If true, indicates that the SearchTwoLine is accessible to screen readers. */ accessible?: boolean; } declare const SearchTwoLine: (props: SearchTwoLineProps) => React.JSX.Element; export default SearchTwoLine;