import { ReactNode } from 'react'; /** * RichText type that can be used to represent either plain string or parsed JSX content. */ export type RichText = string | (ReactNode & { __brand: 'RichText'; }) | null;