/** * Checks if passed argument is undefined * @param v - variable to check * @returns true, if passed v is of type undefined, false otherwise */ export declare function isUndefined(v: any): v is undefined;