// @flow import type { Interpolation } from "styled-components"; import type { Position, DimensionsCore } from "../index.js.flow"; export type StyledPosition = {| ...Position, ...DimensionsCore, +fixed?: boolean, |}; export type ResolvePopoverPosition = StyledPosition => ?Interpolation; declare export default ResolvePopoverPosition;