export type Truthy = T extends false | "" | 0 | null | undefined ? never : T; export declare const truthy: (value: T) => value is Truthy; //# sourceMappingURL=truthy.d.ts.map