import Icon from "../Icon/Icon.js";
export type BoxArrowProps = Partial<React.ComponentProps<typeof Icon>> & {
    /** External link styling (arrow pointing up and to the right) */
    external?: boolean;
};
declare const BoxArrow: import("react").ForwardRefExoticComponent<Omit<BoxArrowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
export default BoxArrow;
