/**
 * @description: 获取cookie值
 * @author: wuxh
 * @Date: 2020-06-09 09:28:06
 * @param {type}
 * @return: string
 * @example:
  getCookie('name') => 123
 */
export declare const getCookie: (name: string) => string | null;
