import React from "react"; import { CardFieldBaseProps } from "./shared"; export interface ImageDisplayProps { src: string; alt: string; } export declare const ImageDisplay: React.FC; export interface CardFieldImageProps extends Omit, React.PropsWithChildren { type: "image"; value?: string; } export declare const CardFieldImage: React.FC>; export default CardFieldImage;