// @flow import type { ReactComponentStyled } from "styled-components"; import type { Globals, Translation } from "../../common/common.js.flow"; import type { Size } from "../index"; import type { Theme } from "../../defaultTheme"; export type Props = {| +children: React$Node, +label?: Translation, +icon?: React$Element, ...Globals, |}; declare export default React$ComponentType; declare export var Item: ReactComponentStyled; export type GetLineHeightToken = ({ theme: Theme, size: Size }) => string; declare export var getLineHeightToken: GetLineHeightToken;