import { SvelteComponent } from "svelte"; import type { ButtonSize } from '../../../types/ButtonSize'; import type { Color } from '../../../types/Color'; declare const __propDef: { props: { class?: string | undefined; label?: string | undefined; href?: string | undefined; icon?: string | undefined; rightIcon?: string | undefined; type?: string | undefined; size?: ButtonSize | undefined; color?: Color | undefined; attributes?: Record | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { icon: {}; default: {}; 'right-icon': {}; }; }; export type LinkProps = typeof __propDef.props; export type LinkEvents = typeof __propDef.events; export type LinkSlots = typeof __propDef.slots; export default class Link extends SvelteComponent { } export {};