import { FunctionComponent, ReactNode } from 'react';
import 'react-aspect-ratio-fence/css/components/AspectRatioFence/style.css';
declare type Props = {
/**
* outter html tag name
* @default div
* */
outerElementType?: string;
/** Custom class name */
className?: string;
/**
* The aspect ratio of an image describes the proportional
* relationship between width and height.
* @default 1
**/
ratio: number;
/** The src attribute of
tag */
src: string;
/** Attributes of
tag */
imgAttributes?: object;
/** custom children node */
children?: ReactNode;
};
declare const AspectRatioImg: FunctionComponent;
export default AspectRatioImg;