import { type ReactNode, type RefObject } from 'react'; type Props = { children: ReactNode; /** * Реф для пагинации */ paginationRef?: RefObject; initialIndex: number | null; }; export declare const List: ({ paginationRef, children, initialIndex }: Props) => JSX.Element; export {};