/**
 * 校验非 ''、undefined、null
 */
declare function isNotEmpty(val: unknown): boolean;

export { isNotEmpty };
