import React, { FunctionComponent } from "react"; export interface PaginationBoxProps { children: React.ReactNode; disable?: boolean; onClick?: () => void; pageNumber?: number; currentPage?: number; className?: string; } export declare const PaginationBox: FunctionComponent;