import type { OEmbedInfo } from '@prezly/sdk'; import React, { type Ref } from 'react'; export declare function BookmarkCard({ border, layout, forwardRef, oembed, url, withThumbnail, }: BookmarkCard.Props): React.JSX.Element; export declare namespace BookmarkCard { interface Props { border?: boolean; forwardRef?: Ref; layout: 'vertical' | 'horizontal'; oembed: OEmbedInfo; url?: string; withThumbnail: boolean; } }