import type { Brand } from 'ts-brand'; export type Truthy = Brand; /** * Asserts that a value is not falsy. * * @tags guard, truthiness */ export declare function isTruthy(value: unknown): value is Truthy;