import React from "react";
import { LinkProps } from "react-router-dom";
import { ButtonProps } from "../../components/Common/Button";
type ButtonLinkProps = LinkProps & ButtonProps;
declare const ButtonLink: (props: ButtonLinkProps) => React.JSX.Element;
export default ButtonLink;
export { ButtonLinkProps };
