// @flow import type { ThemeProps } from "../../defaultTheme"; export type Transition = ( properties: string[], duration: "slow" | "normal" | "fast", timingFunction: string, ) => (theme: ThemeProps) => string; declare export default Transition;