7 lines
		
	
	
		
			190 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			190 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { Ref } from 'vue';
 | |
| type ModalInstance = {
 | |
|     handleClose: () => void;
 | |
| };
 | |
| export declare const useModal: (instance: ModalInstance, visibleRef: Ref<boolean>) => void;
 | |
| export {};
 |