import type { PaginationProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [PaginationProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1300) * ## Props * @prop pages = [] * @prop previous * @prop next * @prop prevContent * @prop nextContent * @prop table * @prop size * @prop ariaLabel * @prop ...restProps */ declare const Pagination: import("svelte").Component; type Pagination = ReturnType; export default Pagination;