import React from 'react'; import { Scene as AScene, SystemDefinition } from 'aframe'; import { IMindARImageSystem } from 'mind-ar-ts/types/image-target/aframe'; import { IMindARFaceSystem } from 'mind-ar-ts/types/face-target/aframe'; declare const useARManager: (sceneRef: React.MutableRefObject) => { startAR: () => void; stopAR: () => void; arSystem: SystemDefinition | undefined; }; export default useARManager;