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