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