import { DecorableText } from './decorable-text'; import { Format } from './format'; export declare type Block = { id: string; type: string; children: Block[]; properties: Record; format: Format; decorableTexts: DecorableText[]; };