import * as React from "react";
/**
 * Pagination full mode
 *
 * STATES (Page Position)
 *
 * - AtFirstThree => 1 | 2 | 3
 * - AtWithin => FirstThree < PAGE < LastThree
 * - AtLastThree => numberOfPages - 2 | numberOfPages - 1 | numberOfPages
 *
 * @returns Full Pagination Component
 */
export declare const FullMode: React.FC;
