import type { ComponentPropsWithRef, ElementType } from 'react'; export type PaginationProperties = { /** Tag of Component */ tag?: ElementType; /** Layout orientation - automatically applies flex-row (horizontal) or flex-col (vertical) */ orientation?: 'horizontal' | 'vertical'; } & ComponentPropsWithRef; /** * Set of links used to navigate content split across multiple pages. * @docs {@link https://design.visa.com/components/pagination/?code_library=react | See Docs} * @vgar TODO * @wcag TODO * @related pagination-overflow, use-pagination */ declare const Pagination: { ({ className, tag: Tag, orientation, ...remainingProps }: PaginationProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Pagination;