import type { ComponentPropsWithRef, ElementType } from 'react';
export type PaginationOverflowProperties<ET extends ElementType = 'li'> = {
    /** Tag of Component */
    tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
 * 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: {
    <ET extends ElementType = "li">({ className, tag: Tag, ...remainingProps }: PaginationOverflowProperties<ET>): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default PaginationOverflow;
