UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 370 B
import type { JSX } from 'react'; import type { ResolvedNavItemWithLink } from '@redocly/config'; export type PageNavigationType = { nextPage?: ResolvedNavItemWithLink | null; prevPage?: ResolvedNavItemWithLink | null; className?: string; }; export declare function PageNavigation({ nextPage, prevPage, className, }: PageNavigationType): JSX.Element | null;