import { FontWeightValues } from '../types'; /** * 判断指定字重是否为加粗 * * @param fontWeight 字重 */ declare const isBold: (fontWeight?: FontWeightValues | undefined) => boolean | undefined; export default isBold;