interface IConfig { isDebug: boolean; isTests?: boolean; AsyncStorage?: any; } /** * Init reactotron */ declare const init: ({ isDebug, AsyncStorage, isTests }: IConfig) => {}; export { init as default };