import React from 'react';
interface ImageAndTextProps {
    color: string;
    message: string;
    image: string | undefined;
}
export default function ImageAndText({ color, message, image }: ImageAndTextProps): React.JSX.Element;
export {};
