import { ReactNode } from "react"; import { Props as GenericDropDownProps } from "./GenericDropDown"; interface ButtonProps { label?: string; value: string; popoverNode?: ReactNode; } declare const Button: import("react").ForwardRefExoticComponent>; interface Props extends Omit, "triggerComponent" | "content" | "triggerProps">, ButtonProps { children?: GenericDropDownProps["content"]; } declare const FilterMenu: ({ children, ...props }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default FilterMenu;