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