import React from "react"; import { ButtonBaseProps, WithIconBaseProps } from "./button-types"; type LinkButtonWithIconProps = React.AnchorHTMLAttributes & ButtonBaseProps & WithIconBaseProps; export default function LinkButtonWithIcon({ children, className, variant, fullwidth, iconColor, large, icon, iconProps, disabled, iconPosition, ...props }: LinkButtonWithIconProps): React.JSX.Element; export {};