import { ChatCardProps, ChatCardContentProps, ChatCardTextProps, ChatCardFooterProps } from './ChatCard.types'; import { ChatGroupProps } from '../Chat/Chat.types'; declare const ChatCardContent: import('react').NamedExoticComponent; declare const ChatCardText: import('react').NamedExoticComponent; declare const ChatCardFooter: import('react').NamedExoticComponent; declare const _ChatCard: import('react').ForwardRefExoticComponent>; /** @deprecated Usar `Chat` en su lugar. */ declare function ChatCardParticipant(props: ChatGroupProps): import("react/jsx-runtime").JSX.Element; declare const ChatCard: typeof _ChatCard & { Content: typeof ChatCardContent; Text: typeof ChatCardText; Footer: typeof ChatCardFooter; /** @deprecated Usar `Chat` en su lugar. */ Participant: typeof ChatCardParticipant; }; export default ChatCard; export type { ChatCardProps, ChatParticipantProps, ChatCardDirection, } from './ChatCard.types';