@bothub-chat/ui
Version:
Bothub UI Components
10 lines (9 loc) • 422 B
TypeScript
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;