interface Props { children?: import('svelte').Snippet; icon?: import('svelte').Snippet; href: string; newTab?: boolean; announceNewTab?: boolean; class?: string; 'aria-label'?: string; 'aria-describedby'?: string; onclick?: (e: MouseEvent) => void; } declare const ExternalLink: import("svelte").Component; type ExternalLink = ReturnType; export default ExternalLink;