type Target = '_self' | '_blank' | '_parent' | '_top'; interface Props { children?: import('svelte').Snippet; href: string; external?: boolean; target?: Target; rel?: string; current?: 'page' | 'step' | 'location' | 'date' | 'time' | 'true' | 'false'; download?: string | boolean; class?: string; id?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; onclick?: (event: MouseEvent) => void; } declare const Link: import("svelte").Component; type Link = ReturnType; export default Link;