/** * Extracts the file extension of a given filename. * * @param filename name of the file to check the extension for * @return the file extension if it exists, otherwise an empty string. */ export declare const getFileExtension: (filename: string) => string;