import { JavaClass, BasicOrJavaType } from "java-bridge"; import { Integer as java_lang_Integer } from "./../../lang/Integer"; /** * This class just defines types, you should import ObjIntConsumer instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class ObjIntConsumerClass extends JavaClass { /** * @param var0 original type: 'java.lang.Object' * @param var1 original type: 'int' * @return original return type: 'void' */ accept(var0: BasicOrJavaType | null, var1: java_lang_Integer | number): Promise; /** * @param var0 original type: 'java.lang.Object' * @param var1 original type: 'int' * @return original return type: 'void' */ acceptSync(var0: BasicOrJavaType | null, var1: java_lang_Integer | number): void; } declare const ObjIntConsumer_base: typeof ObjIntConsumerClass; /** * Class java.util.function.ObjIntConsumer. * * This actually imports the java class for further use. * The class ObjIntConsumerClass 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 ObjIntConsumer extends ObjIntConsumer_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default ObjIntConsumer; //# sourceMappingURL=ObjIntConsumer.d.ts.map