import { ReactNode } from "react"; export interface TextOnImageProps { image: string; content: ReactNode; } declare const TextOnImage: ({ image, content }: TextOnImageProps) => JSX.Element; export default TextOnImage;