/** * Determines if the provided image is within the viewport * * @returns True if image needs to be resized to fit viewport, otherwise false */ declare const imageIsOutOfBounds: (imageRef: React.RefObject) => boolean; export default imageIsOutOfBounds;