import { ImageSourcePropType, ImageStyle, StyleProp, ViewStyle } from 'react-native'; export type ImagePreviewProps = { source: ImageSourcePropType; containerStyle?: ViewStyle; onClicked?: () => void; onDupClicked?: () => void; onLongPress?: () => void; imageStyle?: StyleProp; onChange?: (params: { x: number; y: number; scale: number; }) => void; }; /** * Image preview component. * * ** Under the android platform, scaling is not possible. ** */ export declare function ImagePreview(props: ImagePreviewProps): import("react/jsx-runtime").JSX.Element; /** * Image preview component. */ export declare function ImagePreview2(props: ImagePreviewProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ImagePreview.d.ts.map