import React from 'react'; export type MdLinkProps = { children?: string | React.ReactNode; href?: string; icon?: React.ReactNode; asChild?: boolean; asChildContent?: React.ReactNode; onClick?(_e: React.MouseEvent): void; } & React.AnchorHTMLAttributes & React.ButtonHTMLAttributes; export declare const MdLink: React.ForwardRefExoticComponent<{ children?: string | React.ReactNode; href?: string; icon?: React.ReactNode; asChild?: boolean; asChildContent?: React.ReactNode; onClick?(_e: React.MouseEvent): void; } & React.AnchorHTMLAttributes & React.ButtonHTMLAttributes & React.RefAttributes>; export default MdLink;