import type { PaginationButtonProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [PaginationButtonProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1264) * ## Props * @prop children * @prop size * @prop onclick * @prop disabled = false * @prop class: className * @prop href * @prop active = false * @prop ...restProps */ declare const PaginationButton: import("svelte").Component; type PaginationButton = ReturnType; export default PaginationButton;