/** * MoreItemsIndicator Component * * Shows "X more above/below" indicators for truncated lists. * * @since v1.50.6 */ import type React from 'react'; export interface MoreItemsIndicatorProps { /** Number of hidden items */ count: number; /** Position of the indicator */ position: 'above' | 'below'; } /** * Indicator showing how many items are hidden above or below the visible range. * Always renders a line to maintain stable layout height. */ export declare function MoreItemsIndicator({ count, position }: MoreItemsIndicatorProps): React.ReactElement; //# sourceMappingURL=MoreItemsIndicator.d.ts.map