// @flow import { Interpolation } from "styled-components"; import type { Theme } from "../../../defaultTheme"; type States = "hover" | "focus"; export type GetCssState = ( state: States, ) => ({ theme: Theme, selectable: boolean }) => ?Interpolation; declare export default GetCssState;