import type { JSX } from 'react';
import type { Item } from '../../navigation';
export interface PageNavigationProps {
    prev?: Item;
    next?: Item;
}
export declare function PageNavigation({ prev, next }: PageNavigationProps): JSX.Element | null;
