import type { StyleProp, ViewStyle } from 'react-native'; import { SendbirdBaseChannel } from '@gathertown/uikit-utils'; type Props = { channel: SendbirdBaseChannel; size: number; containerStyle?: StyleProp; }; declare const ChannelCover: ({ channel, ...avatarProps }: Props) => JSX.Element; export default ChannelCover;