import React from 'react'; export interface ResponsiveImageProps { desktop: string; mobile: string; alt?: string; styles?: {}; } declare const ResponsiveImage: React.FC; export default ResponsiveImage;