export interface PaginationProps {
    total: number;
    offset: number;
    onHandlePagination: (selectedPage: number) => void;
}
declare const Pagination: ({ total, offset, onHandlePagination, }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
export default Pagination;
