import type { StoryRef } from '@prezly/sdk'; import type { ReactNode } from 'react'; import React from 'react'; import { type Props as PlaceholderElementProps } from '../components/PlaceholderElement'; import { type Props as BaseProps } from '../components/SearchInputPlaceholderElement'; import type { PlaceholderNode } from '../PlaceholderNode'; export declare function StoryBookmarkPlaceholderElement({ attributes, children, element, format, removable, renderPlaceholder, }: StoryBookmarkPlaceholderElement.Props): React.JSX.Element; export declare namespace StoryBookmarkPlaceholderElement { interface Props extends Pick, 'attributes' | 'children' | 'format'>, Pick { element: PlaceholderNode; renderPlaceholder: (props: { onRemove: (() => void) | undefined; onSelect: (uuid: string) => void; }) => ReactNode; } }