// @flow import * as React from "react"; import type { StyledComponent } from "styled-components"; import type { spaceAfter } from "../../common/getSpacingToken"; import type { Props as BadgeListProps } from "../../BadgeList"; export type Props = {| +children: React.Node, ...BadgeListProps, ...spaceAfter, |}; declare export var StyledWrapper: StyledComponent; declare export default React.ComponentType;