import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { marginBottom?: string | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type StyledLinkProps = typeof __propDef.props; export declare type StyledLinkEvents = typeof __propDef.events; export declare type StyledLinkSlots = typeof __propDef.slots; export default class StyledLink extends SvelteComponentTyped { } export {};