/** * Returns true if the string is undefined, null or whitespace * @param str */ export default function isNullOrWhitespace(str?: string | null): str is null | undefined;