// @flow import type { Globals } from "../../common/common.js.flow"; import type { Size, Color } from ".."; type Return = {| ...Globals, +size?: Size, +color?: Color, +className?: string, +customColor?: string, +ariaHidden?: boolean, +reverseOnRtl?: boolean, +ariaLabel?: string, |}; type Props = {| ...Return |}; export type WhiteListProps = (props: Props) => any; declare export default WhiteListProps;