interface LumPaginationProps {
    currentPage: number;
    totalPages: number;
    pageSize: number;
    totalCount: number;
    onPageChange: (page: number) => void;
    onPageSizeChange: (pageSize: number) => void;
    showInfo?: boolean;
    showFirstLast?: boolean;
    siblingCount?: number;
    className?: string;
}
export declare function LumPagination({ currentPage, totalPages, pageSize, totalCount, onPageChange, showInfo, showFirstLast, siblingCount, className, }: LumPaginationProps): import("react/jsx-runtime").JSX.Element;
export default LumPagination;
//# sourceMappingURL=lum-pagination.d.ts.map