import React from 'react'; import { As, FlightUIProps } from '../withFlightUI'; export declare const Items: React.FC<{ /** By default, the items are not rendered when the dropdownMenu's `isOpen` state is `false`. * Set this to true if you would prefer the list to be hidden with `display: none` * @default false */ onlyHide?: boolean; /** Whether the menu should close when clicking outside it. * @default true */ closeOnClickOutside?: boolean; } & FlightUIProps & { /** @default 'ul' */ as?: As; }>;