import 'mind-ar-ts'; import 'mind-ar-ts/dist/mindar-image.prod'; import { ICompilerData } from 'mind-ar-ts/src/image-target/utils/types/compiler'; import { CompilerState } from './interfaces'; declare const useCompiler: () => { startCompiler: (files: File[]) => Promise; exportedBuffer: Uint8Array; percentage: number | null; dataList: ICompilerData[]; step: CompilerState; }; export default useCompiler;