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