import React from 'react'; import type { BaseField, CollectionWithDefaults, Entry, MediaField, UnknownField } from '@staticcms/core'; interface CardMediaProps { image: string; width?: string | number; height?: string | number; alt?: string; collection?: CollectionWithDefaults; field?: MediaField; entry?: Entry; } declare const CardMedia: ({ image, width, height, alt, collection, field, entry, }: CardMediaProps) => React.JSX.Element; export default CardMedia;