import type React from 'react'; import type { ImageData, ImageNode } from 'ricos-schema/next'; export type PluginExports = { aiIntegrations: { image: { captionTrigger?: React.ComponentType<{ node: ImageNode; onCaptionChange: (caption: string) => void; }>; altTextInput?: React.ComponentType<{ image?: ImageData['image']; altText: string; onChange: (altText: string) => void; }>; }; }; }; //# sourceMappingURL=plugin-exports.d.ts.map