export type * from "./Dropdown.js"; import Dropdown from "./Dropdown.js"; export type * from "./Dropdown.Item.js"; export type * from "./Dropdown.Group.js"; /** * Display a dropdown on click. * The nested content of `` needs to be a single element able to hold * a `ref`, unless an element reference is passed to the `reference` prop. * * @see https://bifrost.intility.com/react/dropdown * * @example * Dropdown content}> * * */ declare const _default: typeof Dropdown & { /** Use inside a link or button to style an item of a dropdown menu. * * Meant to be used as part of the `content` of a `` * * @see https://bifrost.intility.com/react/dropdown#dropdownitem * * @example * */ Item: import("react").ForwardRefExoticComponent>; /** * Nested group of dropdown items. * * Useful for dropdown menus with multiple levels, can be nested inside * one another. * * @see https://bifrost.intility.com/react/dropdown#dropdowngroup * * @example * * Item 1 * Item 2 * * } * > * * * * @example * * * Item A1 * Item A2 * * * Item B1 * Item B2 * * * } * > * * * */ Group: { ({ icon, children, name }: import("./Dropdown.Group.js").DropdownGroupProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; }; export default _default;