/**
 * @description 是否PC端
 *
 * @return {*}  {boolean} 返回一个布尔值
 * @example isPC() => true|false
 */
declare const isPC: () => boolean;
export default isPC;
