import type { FC, HTMLAttributes, Ref } from 'react'; import { type TestableProps } from '../../../utils/testId'; export interface BarListSkeletonProps extends HTMLAttributes, TestableProps { ref?: Ref; /** Number of skeleton rows to render. Defaults to `5`. */ rows?: number; } export declare const BarListSkeleton: FC;