import type { AnchorHTMLAttributes, FunctionComponent, PropsWithChildren } from 'react';
import './button.css';
import { type CommonButtonProps } from './Button';
interface ButtonAnchorProps extends CommonButtonProps, AnchorHTMLAttributes<HTMLAnchorElement> {
    component?: FunctionComponent<PropsWithChildren<any>> | string;
}
export declare const ButtonAnchor: FunctionComponent<ButtonAnchorProps>;
export {};
