import { type PaginationNavProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [PaginationNavProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1170)
 * ## Props
 * @prop currentPage = 1
 * @prop totalPages = 1
 * @prop visiblePages = 5
 * @prop onPageChange
 * @prop prevContent
 * @prop nextContent
 * @prop prevClass
 * @prop nextClass
 * @prop layout = "pagination"
 * @prop nextLabel = "Next"
 * @prop previousLabel = "Previous"
 * @prop ariaLabel = "Page navigation"
 * @prop size = "default"
 * @prop class: className
 * @prop spanClass
 * @prop tableDivClass
 * @prop ...restProps
 */
declare const PaginationNav: import("svelte").Component<PaginationNavProps, {}, "">;
type PaginationNav = ReturnType<typeof PaginationNav>;
export default PaginationNav;
