import React from 'react'; import { type Props as BaseProps } from '../components/PlaceholderElement'; import type { PlaceholderNode } from '../PlaceholderNode'; import type { WithMediaGalleryTab } from '../types'; interface Props extends Omit { element: PlaceholderNode; withMediaGalleryTab: WithMediaGalleryTab; withCaptions: boolean; } export declare function GalleryPlaceholderElement({ children, element, format, withCaptions, withMediaGalleryTab, ...props }: Props): React.JSX.Element; export {};