import type { FC, ImgHTMLAttributes } from "react"; interface FeaturedTextImageProps extends ImgHTMLAttributes { src: string; alt: string; } export declare const FeaturedTextImage: FC; export {};