import React from 'react'; import type { SizeType } from '@atlaskit/avatar'; interface AgentMenuItemSkeletonProps { index: number; containerHeight?: number; skeletonTextHeight?: number; skeletonTextWidth?: number; skeletonAvatarSize?: SizeType; /** * Horizontal padding for the skeleton container. * @default 'space.075'. */ paddingHorizontal?: string; } export declare const AgentMenuItemSkeleton: ({ index, containerHeight, skeletonTextHeight, skeletonTextWidth, skeletonAvatarSize, paddingHorizontal, }: AgentMenuItemSkeletonProps) => React.JSX.Element; export {};