import { AnchorProps } from '../../../Anchor/Anchor'; import * as React from 'react'; export interface JumpProps { /** * Text that appears next to the input. * * @default 'Show page' */ label: string; /** * Maximum number to jump to. * * @default undefined */ totalPages: number; /** * Function handling the jump. * * @default undefined */ getLinkProps: (page: number) => Pick; } export declare const Jump: React.FC;