UNPKG

@redocly/theme

Version:

Shared UI components lib

8 lines (7 loc) 289 B
import type { JSX } from 'react'; import type { ResolvedNavItemWithLink } from '@redocly/config'; export type NextPageType = { nextPage?: ResolvedNavItemWithLink | null; className?: string; }; export declare function NextButton({ nextPage, className }: NextPageType): JSX.Element;