// @flow import * as React from "react"; import type { Translation } from "../../common/common.js.flow"; type Props = {| +child: React.Element<*>, +children: React.Element<*>, +onOnlySelection?: ( SyntheticEvent, {| value: string, label: string |}, ) => void | Promise, +onlySelectionText?: Translation, |}; export type FilterWrapperType = Props => React.Element<*>; declare export default FilterWrapperType;