// @flow import type { Interpolation } from "styled-components"; import type { Dimensions, Position } from "../index"; import type { ThemeProps } from "../../../defaultTheme"; export type Props = {| ...Dimensions, ...Position, ...ThemeProps, |}; type ResolveContainerPosition = Props => Interpolation[] | null; declare export default ResolveContainerPosition;