import React from 'react';
import { IPagination } from './types/pagination';
declare const PaginationBoundary: <V extends string | unknown>(props: IPagination<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
declare const Pagination: <V extends string | unknown>(props: React.PropsWithChildren<IPagination<V>> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof PaginationBoundary>;
export { Pagination };
