import { FC } from 'react'; import { VisualSizesEnum } from '../../../helpers/fontHelpers'; interface DropdownItemSkeletonProps { /** Whether we should render the avatar. */ hasAvatar?: boolean; /** The size of the avatar to render a skeleton for. Default is MEDIUM. */ avatarSize?: VisualSizesEnum; /** Whether the this is a multi-line skeleton. */ hasDescription?: boolean; } export declare const DropdownItemSkeleton: FC; export {};