export default withMagnified; declare function withMagnified(WrappedComponent: any): { new (props: any): { onMouseMove(e: any): void; onMouseDown(e: any): void; onMouseUp(): void; isMagnifiedBiggerThanContainer(itemStyle: any): boolean; toggleMagnify(bool: any): void; getMagnifyInitialPos(e: any): { x: number; y: number; }; getBoundrys(): { boundryY: number; boundryX: number; }; getMagnifiedDimensions(): { magnifiedHeight: number; magnifiedWidth: number; }; containerRef: HTMLDivElement | null; state: { shouldMagnify: boolean; x: number; y: number; }; onDragStart(e: any): void; isDragging: boolean | undefined; dragStartX: any; dragStartY: any; dragStarted: boolean | undefined; getPreloadImage(): React.JSX.Element; getHighResImage(): React.JSX.Element; getContainerStyle(): { width: any; height: any; position: string; display: string; justifyContent: string; alignItems: string; cursor: string; }; getMagnifiedImageStyle(): { zIndex: number; position: string; top: number; left: number; transform: string; opacity: number; transition: string; transitionDelay: string; }; render(): React.JSX.Element; context: unknown; setState(state: any, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly): any; componentDidUpdate?(prevProps: Readonly, prevState: Readonly, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void; }; contextType?: React.Context | undefined; }; import React from "react"; //# sourceMappingURL=withMagnified.d.ts.map