declare module "react-native-image-crop-picker" { export interface Options { cropping?: boolean; width?: number; height?: number; multiple?: boolean; path?: string; includeBase64?: boolean; cropperTintColor?: string; cropperCircleOverlay?: boolean; maxFiles?: number; waitAnimationEnd?: boolean; smartAlbums?: string[]; useFrontCamera?: boolean; compressVideoPreset?: string; compressImageMaxWidth?: number; compressImageMaxHeight?: number; compressImageQuality?: number; loadingLabelText?: string; mediaType?: string; showsSelectedCount?: boolean; showCropGuidelines?: boolean; hideBottomControls?: boolean; enableRotationGesture?: boolean; } export interface Image { path: string; size: number; data: null | string; width: number; height: number; mime: string; } export function openPicker(options: Options): Promise; export function openCamera(options: Options): Promise; export function openCropper(options: Options): Promise; export function clean(): Promise }