import type { JSX } from 'react';
import type { ResolvedNavItemWithLink } from '@redocly/config';
export type PreviousPageType = {
    prevPage?: ResolvedNavItemWithLink | null;
    className?: string;
};
export declare function PreviousButton({ prevPage, className }: PreviousPageType): JSX.Element;
