import { Component, PropsOf, QRL, Signal } from '@builder.io/qwik'; import { PaginationButtonProps } from './PaginationButton'; import { IconProps } from 'flowbite-qwik-icons'; type PaginationProps = PropsOf<'nav'> & { currentPage: Signal; layout?: 'navigation' | 'pagination' | 'table'; nextLabel?: string; onPageChange$?: QRL<(page: number) => void>; previousLabel?: string; showIcons?: boolean; totalPages: number; paginationButton?: Component; nextIcon?: Component; previousIcon?: Component; }; export declare const Pagination: Component; export {};