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