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