/// import { type IconName } from "@prismicio/editor-ui"; export interface LinkDescriptionCardProps { url?: URL | string; title?: string; subTitle?: string; description?: string; largeIconName?: IconName; loading?: boolean; error?: boolean; onEdit?: () => void; onUnlink?: () => void; } export declare function LinkDescriptionCard(props: LinkDescriptionCardProps): JSX.Element;