import * as React from "react";
interface Props {
    readonly child: React.ReactElement<any, string | React.JSXElementConstructor<any>>;
    readonly children: React.ReactElement<any, string | React.JSXElementConstructor<any>>;
    readonly onlySelectionText: React.ReactNode;
    readonly onOnlySelection?: (ev: React.SyntheticEvent<HTMLButtonElement | HTMLAnchorElement>, obj: Record<"label" | "value", string>) => void | Promise<void>;
}
declare const FilterWrapper: ({ child, children, onOnlySelection, onlySelectionText }: Props) => React.JSX.Element;
export default FilterWrapper;
