import React from 'react'; import { SmartPaginationDotsProps as BaseProps } from '@salutejs/plasma-core'; export interface SmartPaginationDotsProps extends BaseProps, React.HTMLAttributes { } /** * Компонент для отображения точек пагинации * с возможностью ограничения количества видимых элементов. */ export declare const SmartPaginationDots: ({ items, index, visibleItems, ...rest }: SmartPaginationDotsProps) => JSX.Element;