import { Node } from '@tiptap/core'; export interface ImageOptions { allowBase64: boolean; } declare module '@tiptap/core' { interface Commands { image: { setImage: (attributes: { src: string; alt?: string; caption?: string; size?: 's' | 'm' | 'l' | 'full'; }) => ReturnType; }; } } export declare const CommonPubImage: Node; //# sourceMappingURL=image.d.ts.map