import type Parser from './parser.js'; interface OSResult { name: string; version?: string; versionName?: string; } interface OSDescriptor { test: RegExp[] | ((parser: Parser) => boolean); describe: (ua: string) => OSResult; } declare const osList: OSDescriptor[]; export default osList;