UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

9 lines (8 loc) 474 B
import { HTMLProps, PolymorphicProps } from '../factory'; import { UsePaginationProps } from './use-pagination'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface PaginationRootBaseProps extends UsePaginationProps, PolymorphicProps { } export interface PaginationRootProps extends HTMLProps<'nav'>, PaginationRootBaseProps { } export declare const PaginationRoot: ForwardRefExoticComponent<PaginationRootProps & RefAttributes<HTMLElement>>;