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