import React from 'react'; import { AvatarData } from '../Avatar/Avatar'; export type GenericCardProps = { title?: string; active?: boolean; mainContent?: JSX.Element; footerContent?: JSX.Element; data?: any; onActiveToggle: (state: any, event: any) => void; disableActiveFn?: boolean; testId?: string; starActiveTooltip?: string; starInActiveTooltip?: string; avatars?: AvatarData[]; modified?: string; type?: 'text' | 'image'; icons?: JSX.Element; lastModifiedTooltipContent?: string; modifiedAtTooltipText?: string; }; export declare const GenericCardV2: (props: GenericCardProps) => React.JSX.Element;