export type HeadingLevels = 1 | 2 | 3 | 4 | 5 | 6;
export type NormalTextLevel = 0;
export type HeadingLevelsAndNormalText = HeadingLevels | NormalTextLevel;
export type AllowedBlockTypes = 'heading' | 'blockquote' | 'hardBreak' | 'codeBlock';
