import { FunctionComponent, ReactNode } from 'react'; import 'react-aspect-ratio-fence/css/components/SquareFence/style.css'; declare type Props = { /** * outter html tag name * @default div * */ outerElementType?: string; /** Custom class name */ className?: string; /** The src attribute of tag */ src: string; /** Attributes of tag */ imgAttributes?: object; /** custom children node */ children?: ReactNode; }; declare const SquareImg: FunctionComponent; export default SquareImg;