import React from 'react';
export declare const ArrowNavigation: ({ total, index, showPrevious, showNext, }: {
    total: number;
    index: number;
    showPrevious: () => void;
    showNext: () => void;
}) => React.JSX.Element | null;
