export interface UrlCitationPreview { href: string; faviconUrl: string; sourceLabel: string; title: string; displayUrl: string; } export declare function parseUrlCitation(href: string, label: string, markdownTitle?: string | null): UrlCitationPreview | null;