import { type ReactNode } from 'react'; type MoreMenuProps = { children: ReactNode[]; }; /** * The moreMenu allows to hide and show further filters. All filterBar.Items inside are hidden initially. * @internal */ export declare const MoreMenu: ({ children }: MoreMenuProps) => import("react/jsx-runtime.js").JSX.Element; export {};