/// import { ListRenderItem, StyleProp, ViewStyle } from 'react-native'; import { AvatarStyleInterface, CometChatListStylesInterface, CometChatOptions, ImageType, ListItemStyleInterface } from '../shared'; import { StatusIndicatorStyleInterface } from '../shared/views/CometChatStatusIndicator/StatusIndicatorStyle'; import { CometChatUsersInterface } from './CometChatUsers'; import { CometChat } from '@cometchat-pro/react-native-chat'; export interface UsersConfigurationInterface extends Omit { } export declare class UsersConfiguration { AppBarOptions?: React.FC; avatarStyle?: AvatarStyleInterface; backButtonIcon?: ImageType; bodyViewContainerStyle?: StyleProp; disableUsersPresence?: boolean; EmptyStateView?: React.FC; ErrorStateView?: React.FC; headViewContainerStyle?: StyleProp; hideError?: boolean; hideSearch?: boolean; hideSeparator?: boolean; listItemStyle?: ListItemStyleInterface; ListItemView?: ListRenderItem; LoadingStateView?: React.FC; onBack?: () => void; onError?: (error: CometChat.CometChatException) => void; onItemPress?: (user: CometChat.User) => void; onItemLongPress?: (user: CometChat.User) => void; onSelection?: (list: CometChat.User[]) => void; options?: (user: CometChat.User) => Array; searchBoxIcon?: ImageType; searchPlaceholderText?: string; searchRequestBuilder?: CometChat.UsersRequestBuilder; selectionIcon?: ImageType; selectionMode?: 'none' | 'single' | 'multiple'; showBackButton?: boolean; statusIndicatorStyle?: StatusIndicatorStyleInterface; SubtitleView?: (item: CometChat.User) => JSX.Element; TailView?: (item: CometChat.User) => JSX.Element; tailViewContainerStyle?: StyleProp; usersRequestBuilder?: CometChat.UsersRequestBuilder; usersStyle?: CometChatListStylesInterface; constructor(props: UsersConfigurationInterface); }