import type { Type } from "../types";
import type { Theme } from "../../defaultTheme";
import type { IconForeground } from "../../primitives/ButtonPrimitive/types";
type getButtonLinkIconForegroundType = ({ type, theme, compact, }: {
    type: Type;
    theme: Theme;
    compact: boolean;
}) => IconForeground;
declare const getButtonLinkIconForeground: getButtonLinkIconForegroundType;
export default getButtonLinkIconForeground;
