import { PointOfView } from '../../types';
export interface PovPaginationProps {
    initialValue: string;
    pointsOfView: PointOfView[] | undefined;
    onItemClick?: (pov: PointOfView) => void;
    className?: string;
    style?: React.CSSProperties;
    dir?: string;
}
export declare const PovPagination: import('react').MemoExoticComponent<({ initialValue, pointsOfView, onItemClick, className, style, dir, }: PovPaginationProps) => import("react").JSX.Element>;
