/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; type PaginationWrapperProps = { children: ReactNode; testId?: string; }; export declare const PaginationWrapper: FC; export {};