/** * LinkPreview - URL preview card * Compact card with thumbnail, title, and description. */ export interface Props { /** The URL being previewed */ url: string; /** Title of the linked page */ title?: string; /** Description of the linked page */ description?: string; /** Preview thumbnail image URL */ imageUrl?: string; } declare const LinkPreview: import("svelte").Component; type LinkPreview = ReturnType; export default LinkPreview; //# sourceMappingURL=LinkPreview.svelte.d.ts.map