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