// @flow import type { Tokens } from "@kiwicom/orbit-design-tokens"; export type Theme = {| +orbit: Tokens, +rtl: boolean, |}; export type ThemeProps = {| theme: Theme, |}; declare export default Theme;