import type { ADFNode } from './adfNode'; import type { ADFNodeGroup } from './types/ADFNodeGroup'; import type { ADFNodeContentOrSpec } from './types/ADFNodeSpec'; /** * Create a content expression that allows any of the specified content items. * Equivalent to `(paragraph | blockquote)` in prosemirror content expressions. * https://prosemirror.net/docs/guide/#schema.content_expressions */ export declare function $or(...content: Array | ADFNodeGroup>): ADFNodeContentOrSpec;