import { AllowedComponentProps, VNodeProps } from '../common' declare interface ChatItemProps { chat?: any index?: number active?: boolean online: boolean } declare interface ChatItemEmits { (e: 'click', targetId: number): void } declare interface _ChatItem { new(): { $props: AllowedComponentProps & VNodeProps & ChatItemProps $emit: ChatItemEmits } } export declare const ChatItem: _ChatItem export default ChatItem export type { ChatItemProps, ChatItemEmits }