import React from "react"; export interface BodyCardProps extends React.HTMLAttributes { titleIcon?: React.ReactNode; titleText?: string; headerActions?: React.ReactNode; customHeader?: React.ReactNode; headerContent?: React.ReactNode; fullHeight?: boolean; scrollable?: boolean; isCardContent?: boolean; onResizeCardBody?: (height: number) => void; cardBodyDependencies?: any[]; backUrl?: string; LinkComponent?: any; }