import { FileType } from '../../index.ts';
/**
 * Checks if a URI contains a supported file extension
 * @param uri The URI to check
 * @returns True if the URI contains a supported file extension, false otherwise
 */
export declare function isURIFileExtensionSupported(uri: string): uri is FileType;
