import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        to: string;
        underline?: boolean | undefined;
        color?: boolean | undefined;
        block?: boolean | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type LinkProps = typeof __propDef.props;
export type LinkEvents = typeof __propDef.events;
export type LinkSlots = typeof __propDef.slots;
/**
 * A simple link component.
 *
 * [See Docs](https://geist-ui-svelte.dev/components/link) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
 */
export default class Link extends SvelteComponent<LinkProps, LinkEvents, LinkSlots> {
}
export {};
