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