import React from 'react'; import type { ImageCardProps as ImageCardCommonProps } from '../types'; export interface ImageCardProps extends ImageCardCommonProps { src?: string; filename?: string; } export declare const ImageCard: (props: ImageCardProps) => React.JSX.Element;