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