import type Parser from './parser.js'; interface PlatformResult { type: string; vendor?: string; model?: string; } interface PlatformDescriptor { test: RegExp[] | ((parser: Parser) => boolean); describe: (ua?: string) => PlatformResult; } declare const platformsList: PlatformDescriptor[]; export default platformsList;