import { LinkProps } from '../Link';
export interface LinkItem extends Pick<LinkProps, 'LinkWrapper'> {
    path: string;
    title: string;
}
interface ItemLinkProps {
    currentPath: string;
    item: LinkItem;
}
export declare function ItemLink({ currentPath, item }: ItemLinkProps): JSX.Element;
export {};
//# sourceMappingURL=ItemLink.d.ts.map