/** * Returns the current platform: `'iOS'`, `'Android'`, `'MacOS'`, `'Windows'`, `'Linux'`, or `'Unknown'`. * * @example * getPlatform() // => 'MacOS' * @since 1.0.0 */ declare const getPlatform: () => string; export default getPlatform;