/**
 * The is-undefined module provides functions to check if a string is undefined.
 *
 * @module
 */
/**
 * Determines whether the string is undefined.
 * @param s The string to check.
 * @returns `true` if the string is undefined; otherwise, `false`.
 */
export declare function isUndefined(s: string | undefined): s is undefined;
