/** @internal */ export type InputMentionField = { id: string; name: string; }; /** @internal */ export type DisplayMentionField = InputMentionField & { isFirstExpression: boolean; isFirstField: boolean; }; /** @internal */ export type EditorType = "html" | "markdown";