import { LinkProps } from '@smart-react-components/router/hooks/useLink';
import React from 'react';
export interface Props extends LinkProps {
    isActive?: boolean;
}
declare const PaginationLink: React.FC<Props>;
export default PaginationLink;
