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#L1193)
 * ## 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<PaginationProps, {}, "">;
type Pagination = ReturnType<typeof Pagination>;
export default Pagination;
