import type { Theme } from "../../defaultTheme";
import type { Type } from "../types";
declare const getButtonIconForeground: ({ theme, type, }: {
    theme: Theme;
    type: Type;
}) => {
    foreground: string;
    foregroundHover: string;
    foregroundActive: string;
    foregroundFocus: string;
};
export default getButtonIconForeground;
