import React from 'react';
import { ZoommableImageStyled } from './styled';
export interface ZoommableImageProps {
    className?: string;
    imageProps?: React.ComponentProps<typeof ZoommableImageStyled>;
    onZoomStart?: () => void;
    onZoomEnd?: () => void;
}
export declare const ZoommableImage: ({ imageProps, className, onZoomStart, onZoomEnd, }: ZoommableImageProps) => import("react/jsx-runtime").JSX.Element;
