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#L1164)
 * ## 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<PaginationButtonProps, {}, "">;
type PaginationButton = ReturnType<typeof PaginationButton>;
export default PaginationButton;
