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