import React from "react"; interface TruncatedFileNameProps { name: string; className?: string; } /** * A file name that truncates in the middle, keeping the extension (and a little of the stem) * visible: "tide-cc-statuses-v2.png" becomes "tide-cc-statu…-v2.png". */ declare const TruncatedFileName: ({ name, className }: TruncatedFileNameProps) => React.JSX.Element; export { TruncatedFileName, type TruncatedFileNameProps };