import * as React from 'react'; import { HoverBinding } from '../hooks/use-hover'; import { StretchLinkTitleMode } from './components/title/stretch-link-title-context'; export interface ImageCardProps extends Partial> { children: React.ReactNode; className?: string; stretchLinkTitleMode?: StretchLinkTitleMode; } export declare function ImageCard(props: ImageCardProps): JSX.Element;