import { ButtonProps } from "@mui/material/Button";
/**
 * ButtonLink props
 */
export type ButtonLinkProps<T = unknown> = Omit<ButtonProps, "href" | "onClick"> & {
    /**
     * To href
     */
    href: string;
    /**
     * Link state
     */
    state?: T;
};
/**
 * ButtonLink
 * @param props Props
 * @returns Component
 */
export declare function ButtonLink<T = unknown>(props: ButtonLinkProps<T>): import("react/jsx-runtime").JSX.Element;
