import { IconName } from '../../../Icon/IconName'; import * as React from 'react'; export interface IconPageProps extends React.AnchorHTMLAttributes { /** * Number of the page to display on the button when the value is a number. * Or URL of the page when the value is a string. * * @default undefined */ icon: IconName; page?: never; } export interface PagePageProps extends React.AnchorHTMLAttributes { /** * Number of the page to display on the button when the value is a number. * Or URL of the page when the value is a string. * * @default undefined */ page: number; icon?: never; } export type PageProps = IconPageProps | PagePageProps; export declare const PageAnchor: React.FC;