import type { ComponentPropsWithRef, ElementType } from 'react'; export type PaginationOverflowProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Element to show hidden elements within pagination component, usually used with ellipsis icon. * @docs {@link https://design.visa.com/components/pagination/?code_library=react | See Docs} */ declare const PaginationOverflow: { ({ className, tag: Tag, ...remainingProps }: PaginationOverflowProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default PaginationOverflow;