import React from 'react'; import { IconType } from '@chargify/icons'; import { ComponentSize } from '../types'; export interface AnchorProps extends React.AnchorHTMLAttributes { label: string; size?: ComponentSize; iconLeft?: IconType; iconRight?: IconType; disabled?: boolean; onClick?: () => void; } declare const Anchor: ({ label, size, iconLeft, iconRight, disabled, onClick, ...props }: AnchorProps) => React.JSX.Element; export default Anchor;