import type { AsChildTypes } from "../types"; import type { BindableProps } from "../types"; import { type PropsOf, type Signal } from "@qwik.dev/core"; import { type PageEntry } from "./utils"; export type PaginationContext = { page: Signal; count: Signal; siblingCount: Signal; disabled: Signal; entries: Signal; localId: string; }; export declare const paginationContextId: import("@qwik.dev/core").ContextId; type PaginationBinds = { page: number; disabled: boolean; count: number; siblingCount: number; }; export type PublicPaginationRootProps = Omit, "onChange$"> & { onChange$?: (page: number) => void; } & BindableProps; export declare const PaginationRoot: import("@qwik.dev/core").Component; export {};