import type BaseCollection from "./baseCollection"; export default interface Article extends BaseCollection { content: Array<{ type: string; children: Array<{ type: string; text: string }>; level?: number }>; }