import React, { ReactNode } from 'react'; import { ImageStyle, ViewStyle, TextStyle } from 'react-native'; export interface DropdownSelectedItemProps { onPress: () => void; style?: (TextStyle | ViewStyle)[]; label: string | ReactNode; removeItemIcon?: ReactNode; onRemoveItem?: () => void; showRemoveIcon?: boolean; disabled: boolean; closeIconStyles?: ImageStyle; testId?: string; } declare const DropdownSelectedItem: ({ onPress, style, label, removeItemIcon, onRemoveItem, showRemoveIcon, closeIconStyles, testId, disabled, ...rest }: DropdownSelectedItemProps) => React.JSX.Element; export default DropdownSelectedItem; //# sourceMappingURL=DropdownSelectedItem.d.ts.map