import { IdentificationError } from './errors.js'; /** * Web implementation for error handling. Note: not all errors from native SDK are available on the web. * * @platform web * */ declare function unwrapError(error: Error): IdentificationError; export { unwrapError };