import { SvelteComponentTyped } from "svelte"; import type { MetaEntry } from 'datocms-structured-text-utils'; declare const __propDef: { props: { url: string; meta: MetaEntry[]; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type LinkProps = typeof __propDef.props; export declare type LinkEvents = typeof __propDef.events; export declare type LinkSlots = typeof __propDef.slots; export default class Link extends SvelteComponentTyped { } export {};