import { ImageType } from '../shared'; import { CometChatJoinProtectedGroupInterface, JoinProtectedGroupStyleInterface } from './CometChatJoinProtectedGroup'; import { CometChat } from '@cometchat-pro/react-native-chat'; export interface JoinProtectedGroupConfigurationInterface extends Omit { } export declare class JoinProtectedGroupConfiguration { closeIcon?: ImageType; joinIcon?: ImageType; onBack?: () => void; onError?: (error: CometChat.CometChatException) => void; joinProtectedGroupStyle?: JoinProtectedGroupStyleInterface; onJoinClick?: (group: CometChat.Group, password: string) => void; passwordPlaceholderText?: string; constructor(props: JoinProtectedGroupConfigurationInterface); }