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