// @flow import type { Interpolation } from "styled-components"; import type { Anchor, DimensionsCore } from "../index.js.flow"; import type { Theme } from "../../defaultTheme.js.flow"; export type StyledAnchor = {| ...Anchor, ...DimensionsCore, theme: Theme, |}; export type ResolvePopoverHorizontal = StyledAnchor => ?Interpolation; declare export default ResolvePopoverHorizontal;