import './HistoryCard.scss'; export interface HistoryCardProps { /** * Is this the principal call to action on the page? */ variant: 'primary' | 'danger' | 'success' | 'warning'; /** * Details to display the title */ title: React.ReactNode; /** * Header for the tab */ tabTitle: string; /** * Comment message to display on the history card */ comment: string; /** * profileShortName is to display short name inside the profile avatar */ profileShortName: string; } declare const HistoryCard: ({ variant, title, tabTitle, comment, profileShortName, }: HistoryCardProps) => import("react/jsx-runtime").JSX.Element; export default HistoryCard;