'use client' import type { RawContentKind } from '@admin/utils/editor/raw-content-kind' export function getRawContentKind(value: unknown): RawContentKind { return value === 'math' ? value : 'html' }