import { ExtendedHTMLElement } from '../../helper/dom';
import { ChatItemContent } from '../../static';
import { ChatItemCard } from './chat-item-card';
export interface ChatItemTabbedCardProps {
tabId: string;
messageId: string | undefined;
tabbedCard: NonNullable['tabbedContent']>;
classNames?: string[];
}
export declare class ChatItemTabbedCard {
contentCard: ChatItemCard;
render: ExtendedHTMLElement;
props: ChatItemTabbedCardProps;
constructor(props: ChatItemTabbedCardProps);
private readonly getTabOfSelectedOrGivenValue;
}