/** * This type guard can be passed into a function such as native filter * in order to remove nullish values from a list in a type-safe way. */ export declare const exists: (value: T) => value is NonNullable; //# sourceMappingURL=index.d.ts.map