/** * 根据文件后缀获取对应的图标。 * * @param filePath 文件路径。 * @returns 对应文件类型的图标。 */ declare function getFileIcon(filePath: string): string; export default getFileIcon;