import { NextPage } from "next";
declare type Props = {
    src: string;
    mobileSrc?: string;
    tabletSrc?: string;
    alt: string;
    width: number;
    height: number;
};
declare const RawResponsiveImage: NextPage<Props>;
export default RawResponsiveImage;
