urbi-exhibitions
Version:
11 lines (10 loc) • 470 B
TypeScript
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>;