import { Node } from '@tiptap/core'; export interface GalleryOptions { maxImages: number; } declare module '@tiptap/core' { interface Commands { gallery: { setGallery: (attributes: { images: { src: string; alt: string; caption?: string; }[]; }) => ReturnType; }; } } export declare const CommonPubGallery: Node; //# sourceMappingURL=gallery.d.ts.map