import React from 'react'; import * as ContextMenuPrimitive from '@radix-ui/react-context-menu'; export interface ContextMenuLabelProps extends React.ComponentPropsWithoutRef { /** * When true, adds left padding to align with items that have indicators. * @default false */ inset?: boolean; } /** * ContextMenuLabel Component * * A non-interactive label used to title a section of menu items. * * @public */ declare const ContextMenuLabel: React.ForwardRefExoticComponent>; export { ContextMenuLabel }; //# sourceMappingURL=ContextMenuLabel.d.ts.map