/** * 判断是否是有效的ppt文件路径(包含ppt、pptx)。 * * @param filePath 文件路径。 * @returns 是否是有效的ppt文件路径。 */ declare function isPptFilePath(filePath: string): boolean; export default isPptFilePath;