/** * @description * Use this helper to safeguard against falsey values. */ export declare const safeguard: (x: T | false | undefined | null | "" | 0) => x is T;