import React from "react";
import { FileItem } from "./Item.types.js";
interface Props {
    file: FileItem;
    href?: string;
    onClick?: (event: React.MouseEvent<HTMLAnchorElement>) => void;
}
declare const ItemName: ({ file, href, onClick }: Props) => React.JSX.Element;
export default ItemName;
