|  | @@ -81,11 +81,11 @@ declare module 'react-native-view-shot' {
 | 
	
		
			
			| 81 | 81 |      /**
 | 
	
		
			
			| 82 | 82 |       * lower level imperative API
 | 
	
		
			
			| 83 | 83 |       *
 | 
	
		
			
			| 84 |  | -     * @param {React.ReactInstance | RefObject} viewRef
 | 
	
		
			
			|  | 84 | +     * @param {number | React.ReactInstance | RefObject} viewRef
 | 
	
		
			
			| 85 | 85 |       * @param {"react-native-view-shot".CaptureOptions} options
 | 
	
		
			
			| 86 | 86 |       * @return {Promise<string>} Returns a Promise of the image URI.
 | 
	
		
			
			| 87 | 87 |       */
 | 
	
		
			
			| 88 |  | -    export function captureRef<T>(viewRef: ReactInstance | RefObject<T>, options?: CaptureOptions): Promise<string>
 | 
	
		
			
			|  | 88 | +    export function captureRef<T>(viewRef: number | ReactInstance | RefObject<T>, options?: CaptureOptions): Promise<string>
 | 
	
		
			
			| 89 | 89 |  
 | 
	
		
			
			| 90 | 90 |      /**
 | 
	
		
			
			| 91 | 91 |       * This method release a previously captured uri. For tmpfile it will clean them out, for other result types it
 |