/**
 * Extracts the file extension from a URI
 * @param uri The URI to extract the extension from
 * @returns The file extension in lowercase, or an empty string if no extension is found
 */
export declare function getFileTypeFromUri(uri: string): string;
