import { Ref } from "vue"; export default function modalController(onModalClosed: Function, onModalOpened: Function): { isModal: Ref; onModalChange: (value: boolean) => void; openModal: () => void; closeModal: () => void; };