parsers: (
    | (text: string, context: ParseContext) => void | ParsedAddress
    | (text: string, context: ParseContext) => void | ParsedCashu
    | (text: string, context: ParseContext) => void | ParsedCode
    | (text: string, context: ParseContext) => void | ParsedInvoice
    | (text: string, context: ParseContext) => void | ParsedLink
    | (text: string, context: ParseContext) => void | ParsedNewline
    | (text: string, context: ParseContext) => void | ParsedTopic
    | (
        text: string,
        context: ParseContext,
    ) => void | ParsedEvent | ParsedProfile
)[] = ...