/**
 * Represents a type that can either hold a value of type T or be null.
 */
type Maybe<T> = T | null;
export { Maybe };
//# sourceMappingURL=maybe.d.ts.map