import Sentry from './sentry'; import './init'; type OptionInitParams = { /** 是否强制开启sentry */ forceOpen?: boolean; }; declare const newSentry: Omit & { init: (options: Sentry.BrowserOptions & OptionInitParams) => void; }; export default newSentry;