UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

20 lines (19 loc) 800 B
import { ElementType, ForwardedRef } from 'react'; export type PaginationProperties = { /** @ignore */ className?: string; /** Tag of Component */ tag?: ElementType; }; /** * Set of links used to navigate content split across multiple pages. * @docs {@link https://design.visa.com/react/components/pagination | See Docs} * @vgar TODO * @wcag TODO * @related pagination-overflow, use-pagination */ declare const _default: <HTMLElementType = HTMLUListElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & PaginationProperties) => import("react").ReactElement; export default _default;