import "../button/btn.css"; import { BaseComponentProps, ComponentKind } from "../../utilities/buttonLinkShared"; import React, { AnchorHTMLAttributes } from "react"; export interface BaseLinkElementProps extends BaseComponentProps, Omit, keyof BaseComponentProps | "children"> { children?: React.ReactNode; external?: boolean; href: string; kind?: ComponentKind; label?: React.ReactNode; } export declare const BaseLink: React.ForwardRefExoticComponent>; //# sourceMappingURL=BaseLink.d.ts.map