import { NodeSpec } from 'prosemirror-model'; export interface UrlType { /** * @validatorFn safeUrl */ url: string; } export interface DataType { /** * @additionalProperties true */ data: object; } export declare type CardAttributes = UrlType | DataType; /** * @name blockCard_node */ export interface BlockCardDefinition { type: 'blockCard'; attrs: CardAttributes; } export declare const blockCard: NodeSpec;