import { JavaClass } from "java-bridge"; import { ContentHandler as java_net_ContentHandler } from "./ContentHandler"; /** * This class just defines types, you should import ContentHandlerFactory instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class ContentHandlerFactoryClass extends JavaClass { /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.net.ContentHandler' */ createContentHandler(var0: string | null): Promise; /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.net.ContentHandler' */ createContentHandlerSync(var0: string | null): java_net_ContentHandler | null; } declare const ContentHandlerFactory_base: typeof ContentHandlerFactoryClass; /** * Class java.net.ContentHandlerFactory. * * This actually imports the java class for further use. * The class ContentHandlerFactoryClass 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 ContentHandlerFactory extends ContentHandlerFactory_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default ContentHandlerFactory; //# sourceMappingURL=ContentHandlerFactory.d.ts.map