import { default as React, ReactNode } from 'react'; import { PolymorphicProps } from '../../style-engine'; import { ColorVariant } from '../../colors'; import { ObjectLabelProps } from '../media/ObjectLabel'; import { TextProps } from '../typography/Text'; type ObjectMenuItemOwnProps = { name?: ReactNode; icon?: ReactNode; color?: ColorVariant; gap?: ObjectLabelProps['gap']; textSize?: TextProps['size']; active?: boolean; className?: string; }; export type ObjectMenuItemProps = PolymorphicProps; export declare function ObjectMenuItem({ active, color, icon, gap, textSize, name, className, ...props }: ObjectMenuItemProps): React.JSX.Element; export {};