// @flow import type { Type } from "../index"; import type { ThemeProps } from "../../defaultTheme"; import type { Background, BoxShadow, Foreground } from "../../primitives/ButtonPrimitive"; export type GetSocialButtonStyles = ({| type: Type, disabled: boolean, ...ThemeProps |}) => {| ...Background, ...Foreground, ...BoxShadow, contentAlign: string, contentWidth: ?string, |}; declare export default GetSocialButtonStyles;