import type { Editor as TiptapEditor } from '@tiptap/core'; import type { ForwardProps } from '@pega/cosmos-react-core'; import type { ImageCustomSourceConfig } from '../Editor.types'; declare const ImageButton: ({ editor, imageInsertionMode, imageCustomSource, ...restProps }: { editor: TiptapEditor; imageInsertionMode: "file" | "url" | "all"; imageCustomSource?: ImageCustomSourceConfig; } & ForwardProps) => import("react/jsx-runtime").JSX.Element; export default ImageButton; //# sourceMappingURL=ImageButton.d.ts.map