import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface DropdownContentProps extends ComposableProps<'div'> { /** * Content (typically DropdownItem components or DropdownMenu). */ children?: React.ReactNode; } /** * DropdownContent Component * * A composable component for the dropdown menu content. * Typically wraps DropdownMenu or custom menu items. * * @public * * @example * ```tsx * * * * * ``` * * @remarks * - Automatically renders in a portal when Dropdown is open * - Supports custom content via children * - Handles positioning automatically * * @important * ⚠️ MUST be used inside a parent Dropdown component. Cannot be used standalone. */ export declare const DropdownContent: React.ForwardRefExoticComponent>; //# sourceMappingURL=DropdownContent.d.ts.map