import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Pagination = "ax-pagination"; type PaginationProps = BoxProps & { "defaultPage"?: number; "default-page"?: number; "disabled"?: false | true; "onPageChange"?: (offset: number) => void; "page"?: number; "total"?: number; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Pagination]: PaginationProps & Omit<(JSXBase.IntrinsicElements["main"]), keyof PaginationProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Pagination]: PaginationProps & Omit<(ComponentPropsWithoutRef<"main">), keyof PaginationProps>; } } } export { Pagination }; export type { PaginationProps };