import { Rectangle } from "../interfaces"; /** * Calculate the bounds of an image element in the viewport */ export declare const calculateImageBounds: (imageElement: HTMLImageElement | null | undefined) => Rectangle | null;