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