export declare function isEmpty(value: T | null | undefined): value is null | undefined; export declare function isNotEmpty(value: T | null | undefined): value is T;