/** * a collection of file utility functions */ /** * return the base name of the file without path info * @param path - path containing the basename to extract * @returns the base name without path information. */ export declare function getBasename(path: string): string; /** * return the extension of the file in the given path * @param path - path containing the filename and extension to extract * @returns filename extension. */ export declare function getExtension(path: string): string; //# sourceMappingURL=file.d.ts.map