UNPKG

react-advanced-cropper

Version:

The react cropper library that gives the possibility to create croppers exactly suited for your website design

14 lines (13 loc) 337 B
import { FC, ReactNode } from 'react'; import { CropperTransitions } from 'advanced-cropper'; interface Props { children?: ReactNode; className?: string; transitions?: CropperTransitions; width?: number; height?: number; left: number; top: number; } export declare const StencilWrapper: FC<Props>; export {};