import { AnchorHTMLAttributes, FunctionComponent, PropsWithChildren } from 'react';
import { CommonButtonProps } from './Button';
type ButtonAnchorProps = CommonButtonProps & {
    component?: FunctionComponent<PropsWithChildren<any>> | string;
} & AnchorHTMLAttributes<HTMLAnchorElement>;
/**
 * @deprecated use Button with `component="a"` instead
 * @param dataTestId
 * @param props
 */
export declare const ButtonAnchor: FunctionComponent<ButtonAnchorProps>;
export {};
