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