import { JavaClass } from "java-bridge"; /** * This class just defines types, you should import FileNameMap instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class FileNameMapClass extends JavaClass { /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.lang.String' */ getContentTypeFor(var0: string | null): Promise; /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.lang.String' */ getContentTypeForSync(var0: string | null): string | null; } declare const FileNameMap_base: typeof FileNameMapClass; /** * Class java.net.FileNameMap. * * This actually imports the java class for further use. * The class FileNameMapClass only defines types, this is the class you should actually import. * Please note that this statement imports the underlying java class at runtime, which may take a while. * This was generated by java-bridge. * You should probably not edit this. */ export declare class FileNameMap extends FileNameMap_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default FileNameMap; //# sourceMappingURL=FileNameMap.d.ts.map