import { Action, ModelFileTypes } from '../types';
/**
 * Hook to load binary files
 *
 * @param dispatch - The dispatch function from the useReducer hook
 * @returns An object containing the loadBinary function
 */
declare function useLoadBinary(dispatch: React.Dispatch<Action>): {
    loadBinary: (file: File, fileType: ModelFileTypes, onProgress: () => void) => void;
};
export default useLoadBinary;
