/**
 * Get the file extension from a filename.
 *
 * @param filename - The name of the file.
 * @returns The file extension or an empty string if no extension is found.
 */
export declare function getFileExtension(filename: string): string
