import { FC } from "react"; import { PreloadBase64ImageProps } from "./../PreloadBase64Image"; export declare const calcAspectRatio: (width: number, height: number) => number; export declare const getImageStyle: (photoAspectRatio: number, wrapperWidth: string, wrapperHeight: string) => { width: string; height: string; }; export declare type ImageInFixedWrapperProps = PreloadBase64ImageProps & { aspectRatio: number; }; declare const ImageInFixedWrapper: FC; export default ImageInFixedWrapper;