import { SvelteComponentTyped } from "svelte";
export interface LinkIconProps {
    svgAttrs?: SVGProps;
}
import type { SVGProps } from "../types";
declare const __propDef: {
    props: {
        svgAttrs?: LinkIconProps["svgAttrs"];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
type LinkIconProps_ = typeof __propDef.props;
export type LinkIconEvents = typeof __propDef.events;
export type LinkIconSlots = typeof __propDef.slots;
export default class LinkIcon extends SvelteComponentTyped<LinkIconProps_, LinkIconEvents, LinkIconSlots> {
}
export {};
