import React from 'react'; import * as ContextMenuPrimitive from '@radix-ui/react-context-menu'; export interface ContextMenuSubContentProps extends React.ComponentPropsWithoutRef { children?: React.ReactNode; } /** * ContextMenuSubContent Component * * The floating content panel for a sub-menu. * Renders in a portal with collision detection and animations. * * @public */ declare const ContextMenuSubContent: React.ForwardRefExoticComponent>; export { ContextMenuSubContent }; //# sourceMappingURL=ContextMenuSubContent.d.ts.map