import type { JSX, PropsWithChildren } from 'react';
import type { ReferenceDocsLocation } from '../../settings';
export interface LinkProps {
    to: ReferenceDocsLocation;
    className?: string;
}
export declare function PaginationAwareLink({ to, className, children, }: PropsWithChildren<LinkProps>): JSX.Element;
