/// import _ from 'lodash'; interface ICheckNewVersion { isMandatoryUpdate: boolean; countryCode: string; } /** * Check app version and show dialog for update */ declare const checkNewVersion: _.DebouncedFuncLeading<(params?: ICheckNewVersion) => void>; export { checkNewVersion as default };