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