import { SvelteComponentTyped } from "svelte"; import { IconEnum } from '../../atoms'; declare const __propDef: { props: { /** * Label * @type {string} */ label: string; /** * Darkmode * @type {boolean} */ darkmode?: boolean | undefined; /** * Link to * @type {string} */ href: string; /** * Selected Icon * @type {IconEnum} */ icon?: IconEnum | undefined; /** * Whether to open the link in a new tab */ isExternal?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type AnchorLinkProps = typeof __propDef.props; export type AnchorLinkEvents = typeof __propDef.events; export type AnchorLinkSlots = typeof __propDef.slots; export default class AnchorLink extends SvelteComponentTyped { } export {};