import { ReactNode } from 'react'; export declare const AddImageModal: ({ children, defaultCaption, onSave, mode, urlOnly, }: { children?: ReactNode; mode?: "add" | "edit"; defaultCaption?: string; onSave: (value: { file: { src: string; }; caption: string; }) => void; urlOnly?: boolean; }) => import("react/jsx-runtime").JSX.Element;