import { ExtendedHTMLElement } from '../../helper/dom';
import { ChatItemContent } from '../../static';
export interface ChatItemInformationCardProps {
tabId: string;
testId?: string;
messageId: string | undefined;
classNames?: string[];
informationCard: NonNullable['informationCard']>;
}
export declare class ChatItemInformationCard {
render: ExtendedHTMLElement;
constructor(props: ChatItemInformationCardProps);
}