import React from 'react'; import { ViewProps } from 'remax/one'; export interface ScalePreviewImageProps extends ViewProps { src: string; thumbStyle?: React.CSSProperties; children?: React.ReactNode; } declare const ScalePreviewImage: ({ src, className, thumbStyle, children, onTap, ...props }: ScalePreviewImageProps) => React.JSX.Element; export default ScalePreviewImage;