import { FC } from 'react'; interface NextArrowProps { className?: string; onClick?(): void; } declare const NextArrow: FC; export default NextArrow;