import { DetectVersionOperator } from '../../utils'; /** Detect the macOS Version */ export default function isMacOSVersion( operator: DetectVersionOperator, version: | 'Cheetah' | 'Puma' | 'Jaguar' | 'Panther' | 'Tiger' | 'Leopard' | 'Snow Leopard' | 'Lion' | 'Mountain Lion' | 'Mavericks' | 'Yosemite' | 'El Capitan' | 'Sierra' | 'High Sierra' | 'Mojave' | 'Catalina' | 'Big Sur' ): (ua: string) => boolean;