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