import React from 'react'; import { BaseImageMagnifyProps } from './use-image-magnify.type'; declare const useImageMagnify: (props: BaseImageMagnifyProps) => { src: string | undefined; status: number; maxWidth: number; maxHeight: number; loading: boolean; getRootProps: () => { ref: React.RefObject; onLoad: () => void; onClick: (e: React.MouseEvent) => void; onMouseMove: ((e: React.MouseEvent) => void) | undefined; }; }; export default useImageMagnify; //# sourceMappingURL=use-image-magnify.d.ts.map