import React from 'react'; import { IReferenceable } from '../../core'; import { CommonSquareButtonProps } from './square-button-commons'; export declare type SquareAnchorButtonProps = CommonSquareButtonProps & IReferenceable & { href?: string; rel?: string; target?: string; onClick?: (e: React.MouseEvent) => void; onFocus?: (e: React.FocusEvent) => void; onBlur?: (e: React.FocusEvent) => void; onMouseOver?: (e: React.MouseEvent) => void; onMouseOut?: (e: React.MouseEvent) => void; }; export declare function SquareAnchorButton(props: SquareAnchorButtonProps): JSX.Element;