/**
 * 校验是否为空 ''、undefined、null
 */
declare function isEmpty(val: unknown): boolean;

export { isEmpty };
