import type { HTMLAttributes } from "svelte/elements";
type PaginationNavProps = Omit, "class"> & {
page: number;
pageCount: number;
siblings?: number;
locale?: string;
label?: string;
previousLabel?: string;
nextLabel?: string;
class?: string;
onPageChange?: (page: number) => void;
};
declare const PaginationNav: import("svelte").Component;
type PaginationNav = ReturnType;
export default PaginationNav;
//# sourceMappingURL=PaginationNav.svelte.d.ts.map