import { default as React } from 'react';
export interface ResponsiveImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
    fallback?: string;
    aspectRatio?: string;
    containerClassName?: string;
    objectFit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
}
export declare const ResponsiveImage: React.ForwardRefExoticComponent<ResponsiveImageProps & React.RefAttributes<HTMLImageElement>>;
