import { AuthenticationType, SecurityLevel } from './LocalAuthentication.types'; export default { async hasHardwareAsync(): Promise { return false; }, async isEnrolledAsync(): Promise { return false; }, async getEnrolledLevelAsync(): Promise { return SecurityLevel.NONE; }, async supportedAuthenticationTypesAsync(): Promise { return []; }, };