export type RichEligibility = { kind: "eligible"; } | { kind: "ineligible"; }; /** Conservatively recognize `/btw` Markdown that can be represented as rich content. */ export declare function parseRichEligibility(markdown: string): RichEligibility;