···1313import * as PubLeafletBlocksCode from './types/pub/leaflet/blocks/code'
1414import * as PubLeafletBlocksHeader from './types/pub/leaflet/blocks/header'
1515import * as PubLeafletBlocksHorizontalRule from './types/pub/leaflet/blocks/horizontalRule'
1616+import * as PubLeafletBlocksIframe from './types/pub/leaflet/blocks/iframe'
1617import * as PubLeafletBlocksImage from './types/pub/leaflet/blocks/image'
1718import * as PubLeafletBlocksMath from './types/pub/leaflet/blocks/math'
1819import * as PubLeafletBlocksText from './types/pub/leaflet/blocks/text'
···4647export * as PubLeafletBlocksCode from './types/pub/leaflet/blocks/code'
4748export * as PubLeafletBlocksHeader from './types/pub/leaflet/blocks/header'
4849export * as PubLeafletBlocksHorizontalRule from './types/pub/leaflet/blocks/horizontalRule'
5050+export * as PubLeafletBlocksIframe from './types/pub/leaflet/blocks/iframe'
4951export * as PubLeafletBlocksImage from './types/pub/leaflet/blocks/image'
5052export * as PubLeafletBlocksMath from './types/pub/leaflet/blocks/math'
5153export * as PubLeafletBlocksText from './types/pub/leaflet/blocks/text'
···55import { CID } from 'multiformats/cid'
66import { validate as _validate } from '../../../../lexicons'
77import { $Typed, is$typed as _is$typed, OmitKey } from '../../../../util'
88+import type * as PubLeafletBlocksIframe from '../blocks/iframe'
89import type * as PubLeafletBlocksText from '../blocks/text'
910import type * as PubLeafletBlocksBlockquote from '../blocks/blockquote'
1011import type * as PubLeafletBlocksHeader from '../blocks/header'
···3839export interface Block {
3940 $type?: 'pub.leaflet.pages.linearDocument#block'
4041 block:
4242+ | $Typed<PubLeafletBlocksIframe.Main>
4143 | $Typed<PubLeafletBlocksText.Main>
4244 | $Typed<PubLeafletBlocksBlockquote.Main>
4345 | $Typed<PubLeafletBlocksHeader.Main>