import { SvelteComponent } from "svelte"; import type { PRELOAD } from "../types"; declare const __propDef: { props: { [x: string]: any; href?: string | null | undefined; preload?: PRELOAD | undefined; active?: string | boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type NavLinkProps = typeof __propDef.props; export type NavLinkEvents = typeof __propDef.events; export type NavLinkSlots = typeof __propDef.slots; export default class NavLink extends SvelteComponent { } export {};