import { type LinkAttributes } from '@lexical/link'; interface LinkPluginProps { validateUrl?: (url: string) => boolean; attributes?: LinkAttributes; } declare const LinkPlugin: import("svelte").Component; type LinkPlugin = ReturnType; export default LinkPlugin;