/// import type { PDSTextType } from '../../../common'; import type { ContextMenuItemValueOption } from '../../../common/types'; export type ContextMenuItemProps = { option?: ContextMenuItemValueOption; size?: 'large' | 'medium' | 'small'; isSelected?: boolean; state?: 'normal' | 'disabled'; displayType?: 'text_only' | 'icon_only' | 'icon_text'; onClick?: (value: ContextMenuItemValueOption | string | number | boolean) => void; /** @deprecated option 필드를 대신 사용하세요. */ text?: PDSTextType; /** @deprecated option 필드를 대신 사용하세요. */ value?: string | number | boolean; }; declare function ContextMenuItem({ option, size, isSelected, state, displayType, onClick, text, value }: ContextMenuItemProps): JSX.Element; export default ContextMenuItem;