import * as React from 'react';
export interface Props {
    src: string;
    title?: string;
    alt?: string;
}
declare const Img: React.FC<Props>;
export default Img;
