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