import type { GalleryNode } from '@prezly/slate-types'; import { GalleryImageSize, GalleryLayout, GalleryPadding } from '@prezly/slate-types'; import React from 'react'; interface Props { element: GalleryNode; onAdd: () => void; onDelete: () => void; onLayoutChange: (layout: GalleryLayout) => void; onPaddingChange: (padding: GalleryPadding) => void; onShuffle: () => void; onThumbnailSizeChange: (imageSize: GalleryImageSize) => void; withLayoutOptions: boolean; } export declare function GalleryMenu({ element, onAdd, onDelete, onLayoutChange, onPaddingChange, onShuffle, onThumbnailSizeChange, withLayoutOptions, }: Props): React.JSX.Element; export {};