// @flow import type { Type } from ".."; import type { Theme } from "../../defaultTheme"; type State = "default" | "focus" | "active" | "hover"; export type GetSocialButtonBoxShadow = ( state: State, disabled: boolean, theme: Theme, type: Type, ) => ?string; declare export default GetSocialButtonBoxShadow;