import * as React from 'react';
export interface PaginationProps {
    activePage: number;
    children: React.ReactNode;
    label?: string;
    pageCount: number;
}
export declare const Pagination: ({ children, label, activePage, pageCount }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Pagination.d.ts.map