import { FunctionComponent } from "react";
/**
 * TextDisplay component renders navigation controls as text for page switching. It displays navigation buttons
 * and the current page number relative to the total available pages.
 *
 * @param currentPage - The current active page.
 * @param totalPages - The total number of available pages.
 * @param onChange - Callback function to handle page changes.
 * @param outerButtonsThreshold - (Optional) The outerButtonsThreshold value that determines when outer navigation buttons are displayed.
 */
export declare const TextDisplay: FunctionComponent<{
    currentPage: number;
    totalPages: number;
    onChange: (newPage: number) => void;
    outerButtonsThreshold?: number;
}>;
