import { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import { LinkProps } from 'react-router'; declare type BaseLinkProps = LinkProps & { className?: string; }; export declare const BaseLink: ForwardRefExoticComponent & RefAttributes>; export {};