import React, { CSSProperties, HTMLAttributes } from 'react'; import { ImageProps } from './interface'; interface ImageFooterProps extends Omit, 'title'> { style?: CSSProperties; className?: string; title?: ImageProps['title']; description?: ImageProps['description']; actions?: ImageProps['actions']; prefixCls: string; } declare const ImageFooter: React.ForwardRefExoticComponent>; export default ImageFooter;