import React from 'react'; export type SkeletonListProps = { itemCount: number; className?: string; ariaLabel?: string; }; export declare const SkeletonList: ({ itemCount, className, ariaLabel }: SkeletonListProps) => React.JSX.Element;