import React from 'react'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { ItemCardProps } from './interfaces'; export interface InternalItemCardProps extends ItemCardProps, InternalBaseComponentProps { /** * Called when the user clicks on the item card. */ onClick?: React.MouseEventHandler; /** * Specifies whether the item card is in highlighted state. */ highlighted?: boolean; /** * Makes the item card stretch to fill the full height of its container. */ fullHeight?: boolean; /** * Specifies metadata for analytics in cards */ metadataAttributes?: Record; }