import { FC } from 'react'; import { IconName } from '../icon/icon'; interface DropdownItemIconProps { iconName: IconName; color?: string; position?: 'right' | 'left'; } export declare const DropdownItemIcon: FC; export {};